codegraph-mcp
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., "@codegraph-mcpShow me the file skeleton for src/utils.ts"
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.
codegraph-mcp
Local MCP server that gives Claude Code (CLI and the VS Code extension) a queryable model of your codebase — where things are defined, who calls what, what depends on what, and what was decided in earlier sessions. Without it the agent rediscovers your architecture every session through grep and file-by-file reading; with it, structural questions get structural answers:
Safer changes — before touching a function the agent sees its blast radius (
analyze_impact), every call site (find_callers), every mention (find_references) and every dependent module (who_imports), instead of editing whatever grep happened to surface.Faster orientation — one
repo_mapcall maps the project by import centrality;find_symbolandsemantic_search("where is auth token validated") land directly on the right code.Continuity —
save_note/recall_notescarry decisions and gotchas across sessions, per repository.Cheaper exploration — as a consequence of the above the agent reads signatures instead of whole files (
file_skeleton,read_symbol), and a transparent proxy compresses conversation history at the wire level.usage_statsreports the measured savings.
100% portable: pure JavaScript + WASM grammars. No node-gyp, no native
compilation. npm install works identically on Windows, macOS and Linux.
Tools exposed to the agent
Understanding & navigation
Tool | What it does |
| Project map: languages, counts, key files by import centrality; |
| Locate a function/class/method/type definition by name, repo-wide |
| Find code/notes by meaning ("where is auth token validated") |
Change safety
Tool | What it does |
| Transitive callers (blast radius) before changing a function |
| Every mention of an identifier — call sites marked |
| Direct dependents of a module (reverse import graph) |
Focused reading
Tool | What it does |
| Imports + all signatures of a file, no bodies (10–50× fewer tokens) |
| Read the full source of one symbol without reading the file |
Memory & operations
Tool | What it does |
| Persistent per-repo notes that survive sessions |
| Force incremental or full re-scan |
| Calls per tool + tokens saved; |
Supported languages: JavaScript, TypeScript, TSX, Python, Go, Rust, Java,
Ruby, C, C++, C#, PHP, GDScript. Files the indexer cannot extract are counted
and reported by repo_map, so partial coverage is always visible.
Related MCP server: MCP Context Manager
Install
Requires Node.js ≥ 20 and Claude Code. Identical on Windows / macOS / Linux:
git clone https://github.com/denzharkov/codegraph-mcp
cd codegraph-mcp && npm install
node bin/codegraph-mcp.js install # registers in Claude Code (user scope)That's it — the install command runs claude mcp add for you, and the
server works in the CLI and the VS Code extension (they share MCP
configuration). Verify with claude mcp list or /mcp inside Claude Code.
The server indexes the directory it is started in (Claude Code starts MCP
servers in the project directory), or the path given via --root /
CODEGRAPH_ROOT. To limit it to a single project instead of user scope, add
.mcp.json to that project:
{
"mcpServers": {
"codegraph": {
"command": "node",
"args": ["/absolute/path/to/codegraph-mcp/bin/codegraph-mcp.js"]
}
}
}To remove: node bin/codegraph-mcp.js uninstall.
Zero configuration
No CLAUDE.md edits or prompt tweaks are needed: the server ships its usage
guidance ("run analyze_impact before changing a function, find_symbol
instead of grep, file_skeleton before reading a file, …") through the MCP
instructions field, which Claude Code injects into the agent's context
automatically on connect. Install, register, done.
Transparent proxy (guaranteed savings)
The MCP tools above save tokens only when the agent chooses to use them. The proxy layer works the other way — like ContextForge, it sits between Claude Code and the Anthropic API and compresses traffic regardless of agent behavior:
History deduplication: when the conversation contains identical tool results (the same file read twice, repeated command output), every occurrence after the first is replaced with a short stub before the request leaves your machine. The first occurrence stays verbatim, so the model loses nothing it could actually use — and the prompt-cache prefix is preserved (only the new tail is ever rewritten, so dedup never causes cache misses on old turns).
Stale-read skeletonization: when a file was read, edited, and read again, the older full copy in history is replaced by its tree-sitter signature skeleton (imports + declarations with line ranges); the newest read always stays verbatim. Non-code files fall back to head+tail truncation. Transforms are pure functions of the content, so repeated requests produce identical bytes and the prompt cache re-stabilizes after a single rewrite.
Prompt grounding: your message is transformed before it reaches the model — the safe way. The words are never rewritten; instead the proxy appends a clearly-labeled block of verifiable facts about the identifiers the message mentions (kind,
file:lines, one-line doc from the symbol graph). The model starts oriented instead of spending tool round-trips discovering the same facts. Only exact-case matches ground, only the newest message gets a fresh block, and blocks are memoized so history stays byte-stable for the prompt cache.Auth headers pass through untouched (API key or OAuth). Anything the proxy cannot parse is forwarded verbatim. Streaming (SSE) is piped through.
codegraph-mcp wrap # like 'cf wrap claude': proxy + claude in one command
codegraph-mcp proxy --port 3210 # or run the proxy standaloneFor the VS Code extension, run the proxy and point the extension at it via project or global settings:
{ "env": { "ANTHROPIC_BASE_URL": "http://127.0.0.1:3210" } }Cumulative savings are tracked in ~/.codegraph/proxy-stats.json and printed
on proxy start.
CLI usage
node bin/codegraph-mcp.js index # index cwd, print stats
node bin/codegraph-mcp.js index --root ~/proj # index another directory
node bin/codegraph-mcp.js dashboard # HTML report, opens in browser
node bin/codegraph-mcp.js map # interactive architecture map
node bin/codegraph-mcp.js # start stdio MCP server (cwd)The architecture map (.codegraph/map.html) is a layered, C4-style view of
the repo, fully derived from the index:
Overview — subsystem cards (top-level directories) with weighted import edges between them, plus auto-derived starting points (hub, entry point, largest module);
Subsystem — the files of one directory with their import edges and collapsed neighbor subsystems; click a file to trace dependents and dependencies, click again to drill in;
File — its symbols with intra-file call arrows, importers and imports as navigable columns.
Every level narrates purpose, not just structure: descriptions are pulled
from the code's own documentation — module docstrings and header comments for
files and symbols, READMEs / __init__.py / index.* for folders and the
repo itself — and shown on folder cards, in tooltips and in the side panel.
Levels are deep-linkable (#d=src, #f=src/proxy.js), search with /,
Esc goes up a level, drag pans, wheel zooms. Self-contained HTML, offline.
The dashboard (--no-open to just write the file) lands in
.codegraph/dashboard.html: token savings, per-tool usage, indexed languages
and the most-imported files. Static HTML, no server, light/dark aware. The
agent can also generate it on request via usage_stats with dashboard=true.
How it works
Files are parsed with tree-sitter WASM grammars (
tree-sitter-wasmspackage) viaweb-tree-sitter— no platform-specific binaries.The extractor walks each AST once, collecting definitions, call edges and imports per language spec (src/languages.js).
The graph persists to
.codegraph/index.jsoninside the target repo; refreshes are incremental (mtime+size) and throttled, so queries stay fast.node_modules, build output, vendored and minified files are skipped; simple root.gitignorepatterns are honored.semantic_searchuses a local embedding model (all-MiniLM-L6-v2 via transformers.js, an optional dependency). On first use it downloads ~25 MB into~/.codegraph/modelsand caches symbol vectors per repo in.codegraph/vectors.bin. Offline or without the dependency it silently falls back to keyword search — everything else works regardless.
Add .codegraph/ to your project's .gitignore (it's a cache plus your
private notes).
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityDmaintenanceCreates and maintains a semantic knowledge graph of code that allows maintaining context across sessions with Claude, providing advanced search capabilities without requiring the entire codebase in the context window.6
- AlicenseAqualityDmaintenanceEnables efficient code navigation and retrieval through natural language search, BM25 ranking, and fuzzy matching across multiple programming languages. It drastically reduces token usage by allowing Claude to query specific code symbols and logic instead of reading entire files.133313MIT
- AlicenseNot gradedqualityAmaintenanceEnables Claude Code to query codebase knowledge graphs directly, reducing token usage 5x–71x by reading a compact graph.json instead of raw files.3MIT
- FlicenseNot gradedqualityDmaintenanceEnables Claude to intelligently analyze and query codebases using knowledge graphs, supporting natural language code search, relationship discovery, and incremental updates.11
Related MCP Connectors
Give your AI agent a persistent map of your project's structure, dependencies, and bugs.
Code intelligence for coding agents: semantic, AST, graph, and full-text search. 279+ languages.
Provide your AI coding tools with token-efficient access to up-to-date technical documentation for…
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/denzharkov/codegraph-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server