Code Graph MCP
Supports indexing JavaScript source files.
Provides tools for querying code graph data stored in Neo4j, enabling analysis of dependencies, symbols, and file relationships.
Supports indexing and querying Next.js projects, including extraction of App Router and Pages Router routes.
Detects npm package manager and workspace configurations in repositories.
Detects pnpm package manager and workspace configurations.
Supports indexing TypeScript source files with symbol and dependency resolution.
Detects Yarn package manager and workspace configurations.
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., "@Code Graph MCPshow me the dependency graph for src/index.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.
Code Graph MCP
Local code graph MCP, designed as a modular multi-language system.
The Go process owns CLI, project discovery, plugin orchestration, Neo4j ingestion/querying, and MCP. The TypeScript extractor is a Node subprocess that uses ts-morph, TypeScript Compiler API data, dependency-cruiser validation, and custom Next.js route extraction. Future language support plugs into the same GraphEvent NDJSON protocol.
Supported Projects And Languages
Supported now:
TypeScript and JavaScript repositories
npm, pnpm, and Yarn package manager detection
package workspaces declared in
package.jsoncommon monorepo layouts using
apps/*andpackages/*Next.js App Router and Pages Router route extraction
.ts,.tsx,.js, and.jsxsource files
Not implemented yet:
Go, Python, Ruby, Rust, Java, or other language extractors
non-Next.js framework route extractors
incremental file-level updates
The extractor protocol is language-neutral, so new language support should be added as a new subprocess extractor that emits the same codegraph.v1 NDJSON events. The tradeoff is that v1 keeps the Go server stable and modular, but only the TypeScript/JavaScript extractor is production-usable today.
Related MCP server: Maven Decoder MCP Server
Quick Start
cp .env.example .env
pnpm install
docker compose up -d neo4j
go run ./cmd/codegraph doctor
go run ./cmd/codegraph reset
go run ./cmd/codegraph index --ripple my-app --repo /path/to/repo --language typescript
go run ./cmd/codegraph status --ripple my-app
go run ./cmd/codegraph visualize --ripple my-app --output codegraph-visualization.html
go run ./cmd/codegraph serve --addr :8080Docker-only for this repo:
docker compose --profile app run --rm app index --ripple code-graph --repo /repo --language typescriptDocker-only for another local repo:
docker compose --profile app run --rm -v /path/to/repo:/target:ro app index --ripple my-app --repo /target --language typescriptNeo4j Browser is available at http://localhost:7474 with neo4j/password.
Indexing Behavior
The TypeScript extractor respects root and nested .gitignore files before adding files to the graph. Built-in ignores still exclude generated/vendor paths such as node_modules, .git, .next, dist, build, coverage folders, and .d.ts files.
For large repositories, the extractor stays bounded by using lightweight relative import resolution, skipping full symbol relationship traversal, skipping dependency-cruiser validation, and omitting symbol signatures. These limits are configurable:
CODEGRAPH_NODE_OPTIONS=--max-old-space-size=6144
CODEGRAPH_SYMBOL_RELATION_LIMIT=750
CODEGRAPH_DEPCRUISE_FILE_LIMIT=1500Commands
codegraph doctor: checks Neo4j connection and local extractor config.codegraph reset: deletes all graph data and ripples from Neo4j.codegraph discover --repo .: detects package manager, workspaces, and project types.codegraph index --ripple my-app --repo . --language typescript: creates or replaces a named ripple index for a repo.codegraph update --ripple my-app: re-indexes an existing ripple using its saved repo and language.codegraph status --ripple my-app: shows node and relationship counts for one ripple.codegraph ripples: lists all indexed ripples in the database.codegraph visualize --ripple my-app --output graph.html: exports an HTML graph viewer for one ripple.codegraph serve --addr :8080: starts the HTTP MCP server with/mcp/{ripple}endpoints.codegraph mcp --ripple my-app: starts the stdio MCP server for one ripple.codegraph test-extractor typescript: validates the TypeScript extractor on the fixture repo.
Ripples
A ripple is a named index inside the shared Neo4j database. Each ripple stores its repo path and language, and all graph nodes and relationships are scoped to that ripple.
codegraph index --ripple my-app --repo /path/to/repo --language typescript
codegraph update --ripple my-app
codegraph ripplesupdate reuses the stored repo path and language for the ripple, deletes only that ripple's existing graph, and rebuilds it. Other ripples in the same Neo4j database are left untouched.
The HTTP MCP endpoint is scoped by ripple name:
http://localhost:8080/mcp/my-appThe stdio MCP command is equivalent:
codegraph mcp --ripple my-appOpenCode Installation
OpenCode should connect to an already running CodeGraph HTTP MCP server. Start the server first:
go run ./cmd/codegraph serve --addr :8080Then add one remote MCP server per ripple you want OpenCode to use.
Example global config at ~/.config/opencode/opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"codegraph_my_app": {
"type": "remote",
"url": "http://localhost:8080/mcp/my-app",
"enabled": true,
"timeout": 15000
}
}
}Then verify OpenCode can connect:
opencode mcp listOpenCode should show the server as connected. In prompts, refer to the configured MCP name and ask it to start with codegraph_help, for example use codegraph_my_app, call codegraph_help first, then find the files related to auth.
Visualization
Generate a self-contained HTML visualization from the current Neo4j graph:
go run ./cmd/codegraph visualize --ripple my-app --output codegraph-visualization.htmlThe visualization plots every indexed node for one ripple on a canvas, groups nodes by label, supports search, and draws the local relationship neighborhood for the selected node. It is designed to remain usable on large graphs where a full force-directed SVG would be slow and unreadable.
MCP Tools
codegraph_help: explains how to use this MCP, including workflows, aliases, and examples.get_ripple_info: returns the current ripple, repo path, language, and graph counts.list_node_types: returns node label counts and relationship type counts for the current ripple.search_code: broad search across files, symbols, packages, routes, tests, and config nodes.find_symbolfind_fileget_dependenciesget_dependentsget_relationsget_impactget_route_impactget_related_testsfind_pathsopen_symbol_bodyopen_file_excerpt
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.
Latest Blog Posts
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/claudioscheer/code-graph-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server