findmy-typescript-mcp
Verified Safeby FlywheelStudio
Overview
This MCP server enables AI agents to semantically analyze, navigate, and query TypeScript and Next.js codebases by indexing symbols and providing rich metadata.
Installation
npx tsx scripts/mcp-server.ts /path/to/target/projectSecurity Notes
The server loads a TypeScript project using `ts-morph` based on a `rootDir` provided as a command-line argument. Symbol lookup and file enumeration are restricted to files within this configured project scope, as `project.getSourceFile` will return undefined for paths outside the `tsconfig.json`'s resolved files. This prevents arbitrary file system traversal or reading of sensitive files outside the intended project. No direct use of `eval` or hardcoded secrets found in the provided source code. The server communicates via standard I/O (stdio), which inherently has a smaller network attack surface than a traditional HTTP server, but still processes external input.
Similar Servers
context-engine
Provides an agent-agnostic local context engine via Model Context Protocol (MCP) for coding agents, enabling semantic search, planning, code review, and prompt enhancement with AI integration.
codeweaver
A code intelligence platform that provides semantically rich, context-aware code search for AI agents, aimed at reducing cognitive load and token costs for coding tasks.
code-graph-context
A Model Context Protocol (MCP) server that builds and queries a knowledge graph of TypeScript codebases in Neo4j, supporting semantic search, impact analysis, dead code detection, and multi-agent coordination through stigmergy.
tenets
Provides intelligent, token-optimized code context and automatically injects guiding principles to AI coding assistants for enhanced understanding and consistent interactions.