transcend
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@transcendFind the definition of the 'createUser' function."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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-watchOn 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.
Related MCP server: CodeSift
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/repoGeneric 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 | clusters + hub symbols; start here |
| map | fuzzy symbol lookup → node IDs |
| map | callers/callees/imports/inheritance around a node |
| map | shortest structural path between two symbols |
| map | index management + both layers' health |
| live | ground truth, always current |
| live | hover, file outline, workspace search |
| live | incoming/outgoing calls (capability-gated, with fallback) |
| bridge | node ID ⇄ verified live |
| meta | token savings so far (this session + cumulative) |
All tools accept tokenBudget (default 2000, max 10000) and return a uniform
envelope; see the agent guide.
Token savings
Every successful tool response is measured against the naive alternative —
reading in full every file the response points into — and the delta is
accumulated cumulatively in .transcend/metrics.json:
savings = baseline (full reads of referenced files) − actual (emitted tokens)Baseline is an upper bound (an agent might not read whole files). View it three
ways: the metrics_report tool (live, mid-session), a one-line stderr summary
on shutdown, or the CLI report:
node dist/src/index.js report --root /path/to/repo # per-tool table + total
node dist/src/index.js report --root /path/to/repo --json # raw JSONDevelopment
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-miniArchitecture notes: docs/ARCHITECTURE.md.
No telemetry. No network calls. Secrets are never read; configuration is CLI flags only.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/LSDIPPOLLC/transcend-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server