transcend
A code-intelligence MCP server for coding agents that combines a static repository map (via tree-sitter) with precise live navigation (via LSP), providing structured, token-budgeted responses anchored to file:line.
README
transcend
Docs: ldippo.github.io/transcend-mcp · Suite: transcend-harness
A code-intelligence MCP server for coding agents: a cheap static map of a
repository (tree-sitter structural graph — clusters, hubs, budgeted subgraphs)
plus precise live navigation (real language servers via LSP), bridged by
stable symbol IDs. Every response is structured, token-budgeted, and anchored
to file:line — never a raw file dump.
Languages: Python (pyright) and TypeScript/JavaScript
(typescript-language-server). Adding a language = a tree-sitter grammar +
.scm queries + an LSP command — no core changes.
Install & run
npm install
npm run build
# optional but recommended — without them the server runs map-only:
npm install -g pyright typescript-language-server typescript
node dist/src/index.js --root /path/to/repo # stdio MCP server
node dist/src/index.js --root /path/to/repo --no-watch
On first run the server indexes the repo in the background (≈0.5s per 1k
files) and persists the index under <repo>/.transcend/ (add it to
.gitignore). A file watcher keeps the index fresh incrementally.
Wire into a harness
Any MCP-over-stdio harness works. Claude Code:
claude mcp add transcend -- node /path/to/transcend/dist/src/index.js --root /path/to/repo
Generic MCP config:
{
"mcpServers": {
"transcend": {
"command": "node",
"args": ["/path/to/transcend/dist/src/index.js", "--root", "/path/to/repo"]
}
}
}
Give the agent docs/AGENT_GUIDE.md — it documents the orient-with-map / confirm-with-LSP policy that the tool descriptions also encode.
Tool surface
| Tool | Layer | Purpose |
|---|---|---|
map_overview |
map | clusters + hub symbols; start here |
map_search |
map | fuzzy symbol lookup → node IDs |
map_neighbors |
map | callers/callees/imports/inheritance around a node |
map_path |
map | shortest structural path between two symbols |
map_rebuild, map_status |
map | index management + both layers' health |
nav_definition / nav_references / nav_implementations |
live | ground truth, always current |
nav_type / nav_symbols / nav_workspaceSymbols |
live | hover, file outline, workspace search |
nav_callHierarchy |
live | incoming/outgoing calls (capability-gated, with fallback) |
resolve |
bridge | node ID ⇄ verified live file:line:col, staleness flagged |
All tools accept tokenBudget (default 2000, max 10000) and return a uniform
envelope; see the agent guide.
Development
npm test # unit + integration (LSP tests auto-skip if servers absent)
npm run smoke # build + scripted MCP client against the TS fixture
npx @modelcontextprotocol/inspector node dist/src/index.js --root test/fixtures/ts-mini
Architecture notes: docs/ARCHITECTURE.md.
No telemetry. No network calls. Secrets are never read; configuration is CLI flags only.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.