Semantic code graph with 34 tools: callers, impact, complexity, AI context, memory. 38 languages.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Cross-language code intelligence for AI agents and developers.
CodeGraph builds a semantic graph of your codebase β functions, classes, imports, call chains β and exposes it through 42 MCP tools, a VS Code extension, a JetBrains IDE plugin, and a persistent memory layer. Parses 38 languages via tree-sitter. AI agents get structured code understanding instead of grepping through files.
Add to ~/.claude.json (or your MCP client config):
The server indexes the current working directory automatically.
Install the VSIX:
One VSIX serves every platform.
The analysis engine is not bundled: on first activation the extension offers to download the engine built for your platform, verifies it against the published checksum, and installs it into ~/.codegraph/bin - the same location the JetBrains plugin uses, so one download serves both.
The download is offered rather than performed automatically, because it is a native binary that runs with your permissions.
Decline it and run CodeGraph: Download Analysis Engine from the command palette whenever you are ready.
Once an engine is present, the extension starts it automatically and registers all tools as Language Model Tools for Copilot.
A plugin for IntelliJ IDEA, PyCharm, GoLand, Android Studio and the rest of the
family drives the same engine over LSP: Code Vision, Symbols and Memories tool
windows, a graph panel, and one-click MCP registration for the AI Assistant.
It resolves or downloads the engine the same way the VS Code extension does,
sharing ~/.codegraph/bin.
β jetbrains/README.md for surfaces, engine resolution order, and building from source.
Pre-configured rule files that teach AI coding agents (Claude, Cursor,
Windsurf, Codex, Cline) to use CodeGraph MCP tools before falling back
to grep / multi-file reads. Maps natural-language intent to the right
codegraph_* tool.
β codegraph-ai/codegraph-rules-for-agents
Setup is cp <agent>/codegraph.md ~/<agent>/ (one line per agent β see
the rules repo's README).
Drop a workflow into your repo to get an automatic code-graph analysis
comment on every PR β blast radius, test gaps, stale docs, suggested
reviewers. Runs graph-only (no embeddings, no ONNX model), so it's
fast and needs no API keys β just the built-in GITHUB_TOKEN.
Copy .github/workflows/codegraph-pr.yml
into your repo. The core invocation is a single command:
This prints a ready-to-post markdown comment. The --graph-only flag
skips embedding generation (10-50Γ faster indexing); --run-tool runs
one tool and exits without the MCP stdio handshake β ideal for scripting.
| Flag | Default | Description |
|---|---|---|
--workspace <path> | current dir | Directories to index (repeatable for multi-project) |
--exclude <dir> | β | Directories to skip (repeatable) |
--embedding-model <model> | bge-small | bge-small (384d, fast), jina-code-v2 (768d, 6Γ slower), granite-97m (384d, 32K ctx, ~3Γ slower), or static (model2vec, 256d β ~100Γ faster indexing, no ONNX; needs a local model dir, see below) |
--full-body-embedding | true | Embed full function body (~50 lines) for better semantic search and duplicate detection |
--max-files <n> | 5000 | Maximum files to index |
--profile <name> | all | Filter the exposed MCP tool surface to a named subset (see below) |
--graph-only | off | Skip embedding generation β build the graph and serve structural tools only. No ONNX model load, 10-50Γ faster indexing. Semantic search unavailable. For CI / one-shot graph queries. |
--run-tool <name> | β | One-shot mode: index, run a single tool, print its result, exit. No MCP handshake. Pair with --tool-args '<json>'. |
--embedding-model static β model2vec fast indexingStatic (model2vec) embeddings replace the ONNX transformer with a tokenβvector
lookup table: indexing is ~100Γ faster (this repo's 5,873 symbols embed in
~1 s vs ~3.4 min with BGE) and there's no ONNX runtime or 1.5 GB RAM gate.
Retrieval stays hybrid (BM25 + semantic), so end-to-end quality is ~90% of BGE.
The model is not bundled with any client β it needs a local model directory
(config.json + tokenizer.json + model.safetensors) at
~/.codegraph/static_models/jina-code-static-256, or wherever
CODEGRAPH_STATIC_MODEL points:
@astudioplus/codegraph-mcp from npm downloads it into that
default location for you (best-effort; set CODEGRAPH_SKIP_MODEL_FETCH=1 to
skip, and the install never fails over it).scripts/fetch-static-model.sh, or
distill your own from any sentence-transformer (Apache-2.0 Jina-Code by
default) in ~30 s on CPU: python scripts/distill_static_model.py.CODEGRAPH_STATIC_MODEL unset and let the engine resolve it. To use a model
kept somewhere else, set codegraph.staticModelPath in VS Code, or
Settings β Tools β CodeGraph β Embeddings β Static model directory in
JetBrains; each client then passes that path as CODEGRAPH_STATIC_MODEL.CODEGRAPH_SKIP_MEMORY_CHECK β force the embedding model past the RAM gateBefore loading the ONNX model, the server checks available memory and, if under
~1.5 GB, skips the model to avoid an OOM-kill (running graph-only instead).
Set CODEGRAPH_SKIP_MEMORY_CHECK=1 (also accepts true/yes) to bypass that
check and always load the model.
Use it if embeddings are disabled even though the machine has plenty of free
RAM.
A reading of 0 MB available is treated as a detection failure and the model
loads anyway (macOS parks reclaimable memory in inactive/speculative pages that
some memory readers do not count as free), so this override is mainly for other
cases where the reported figure is low but wrong.
It works in both MCP and one-shot --run-tool modes.
--profile β narrow the MCP tool surfaceThe full 42-tool surface is convenient but inflates the agent's prompt-context cost. A profile exposes only the slice you need (also settable via the CODEGRAPH_TOOL_PROFILE env var):
| Profile | Tools | Use when |
|---|---|---|
all (default) | every tool (community + pro) | normal sessions |
core | 8 β search + symbol info + AI context | chatty agent sessions where you only need lookups |
graph | 17 β callers/callees/deps/impact/traverse/PR context | refactoring + structural analysis |
memory | 14 β codegraph_memory_* plus the docs tools | note-taking / knowledge-base workflows |
security | pro security tools only (empty on community) | pro security audits |
The codegraph.* settings are documented once, next to the extension that
reads them:
β vscode/README.md β Configuration
Full-body embeddings are enabled by default. Function body text is captured at parse time with zero I/O overhead.
Built-in exclusions (always skipped) cover ~47 directories across three categories:
node_modules, target, dist, build, out, .git, __pycache__, vendor, .venv, venv, .tox, .pytest_cache, .mypy_cache, .ruff_cache, .next, .nuxt, .svelte-kit, .parcel-cache, .npm, .yarn, .pnpm-store, .cache, .cargo, .bundle, .gradle, DerivedData, Pods, xcuserdata, cmake-build-*.idea, .vscode-test, .fleet, .terraform, .terragrunt-cache, .serverless.aws, .ssh, .gnupg, .kube, .dockerPlus glob patterns for binary archives, native libraries, OS metadata, and secret file extensions (*.pem, *.key, *.p12, *.pfx, *.crt, *.gpg, *.kdbx, SSH key conventions like id_rsa, etc.) β defense in depth against accidentally embedding credentials.
Indexing produced zero files, or something else looks wrong? See docs/troubleshooting.md.
42 community tools, plus 27 more (17 of them security analyzers) in CodeGraph Pro.
No reviews yet β be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/codegraph)<a href="https://allmcps.com/mcp/codegraph"><img src="https://allmcps.com/api/badge/codegraph?style=directory" alt="Codegraph on AllMCPs" /></a>