mcp-repo-graph
mcp-repo-graph is a structural graph memory server that maps a codebase into a navigable graph of entities, relationships, and flows, enabling AI coding assistants to find and read only the files they need.
Generate & Reload (
generate,reload): Scan the codebase to build or rebuild the structural graph, auto-detecting languages and frameworks; reload from disk after external regeneration.Repo Overview (
status): Get a high-level snapshot including git state, detected languages, entity counts, and available feature flows — cheap orientation without reading source files.Trace Feature Flows (
flow): Get the end-to-end path for a named feature rendered as layered tiers (ENTRY → SERVICE → HANDLER → DATA).Shortest Path Between Nodes (
trace): Find the shortest path between any two nodes using exact IDs or fuzzy name matching, with tier transitions shown.Blast Radius Analysis (
impact): Fan out from any node upstream or downstream to a configurable depth, grouped by architectural tier.Direct Connections (
neighbours): View all one-hop connections to and from a node with edge types for quick context.Context Cost Estimate (
cost): Calculate total line count for all files in a feature's flow before starting work.Maintenance Hotspots (
hotspots): Rank files by size × connection-count to surface the biggest maintenance risks.Minimal File Set (
minimal_read): Retrieve the smallest set of files needed for a specific task, optionally filtered by keywords and ranked by relevance.File Internals Analysis (
bloat_report): Inspect a file's internal structure — functions/methods ranked by size, class counts, injected services.File Split Planning (
split_plan): Generate concrete, responsibility-grouped suggestions for splitting oversized files.Graph Visualization (
graph_view): Render ASCII maps — layered flow diagrams for features, node neighborhoods, or a full graph overview.
Extracts entities and relationships from Rust codebases using Actix web framework, including routes, structs, traits, and functions for graph-based code navigation.
Analyzes Angular applications to extract components, services, guards, dependency injection, HTTP calls, and feature flows for structural understanding and navigation.
Detects HTTP calls made with Axios in React applications for mapping API interactions and data flows within the codebase graph.
Analyzes C/C++ codebases using CMake, Makefile, or Meson build systems to extract sources, headers, classes, structs, enums, namespaces, and include relationships.
Extracts HTTP routes from Go codebases using the Chi router framework for mapping API endpoints and their relationships.
Detects and analyzes C/C++ projects using CMake build systems to extract structural information about sources, headers, and dependencies.
Identifies PHP projects and extracts namespaces, classes, interfaces, and routes from Laravel or Symfony frameworks for structural analysis.
Extracts packages, modules, classes, functions, and routes from Python Django web applications for graph-based code navigation.
Analyzes Python FastAPI applications to extract routes, dependencies, and API endpoints for structural understanding and flow tracing.
Extracts packages, modules, classes, functions, and routes from Python Flask web applications for graph-based code analysis.
Extracts HTTP routes from Go codebases using the Gin web framework for mapping API endpoints and their relationships.
Provides git state information and supports integration with git hooks for automatic graph regeneration to maintain up-to-date codebase maps.
Detects Java/Kotlin projects using Gradle build systems and extracts packages, classes, and routes from Spring or JAX-RS frameworks.
Extracts entities and relationships from Hono JavaScript/TypeScript web applications for structural analysis and flow mapping.
Analyzes Kotlin codebases to extract packages, classes, and routes from Spring or JAX-RS frameworks for structural understanding.
Extracts namespaces, classes, interfaces, and routes from PHP Laravel applications for structural analysis and dependency mapping.
Analyzes NestJS applications to extract modules, controllers, services, and dependencies for structural understanding and flow tracing.
Analyzes C#/.NET projects to extract namespaces, classes, and routes from ASP.NET or Minimal API applications for structural navigation.
Detects PHP projects and extracts structural information including namespaces, classes, interfaces, and framework routes for analysis.
Supports integration with git pre-commit hooks for automatic graph regeneration to maintain current codebase maps without manual intervention.
Analyzes Python codebases to extract packages, modules, classes, functions, and web framework routes for structural understanding and navigation.
Extracts React components, hooks, context providers, and React Router routes for structural analysis and dependency mapping.
Detects and analyzes React Router routes within React applications for mapping navigation flows and component relationships.
Extracts entities and relationships from Rust codebases using Rocket web framework, including routes and structural elements for graph navigation.
Analyzes Ruby codebases to extract files, classes, modules, and Rails routes for structural understanding and dependency mapping.
Extracts crates, modules, structs, traits, functions, and web framework routes from Rust projects for structural analysis.
Extracts packages, classes, and routes from Java/Kotlin Spring framework applications for structural understanding and flow tracing.
Analyzes Swift codebases to extract files, types (class/struct/enum/protocol/actor), and Vapor routes for structural navigation.
Extracts namespaces, classes, interfaces, and routes from PHP Symfony applications for structural analysis and dependency mapping.
Uses pyproject.toml for Python project detection and Cargo.toml for Rust project detection as configuration markers for analyzer activation.
Analyzes TypeScript codebases to extract modules, classes, functions, and import relationships for structural understanding and navigation.
Extracts routes and structural elements from Swift Vapor web applications for graph-based code analysis and flow tracing.
Uses YAML format for storing named feature flows with ordered step sequences in the generated graph data for flow analysis.
repo-graph
Structural graph memory for AI coding assistants. Map your codebase. Navigate by structure. Read only what matters.
repo-graph gives LLMs a map of your codebase — entities, relationships, and flows — so they can navigate to the right files without reading everything first.
Instead of flooding an LLM's context window with your entire codebase (or hoping it guesses right), repo-graph builds a lightweight graph of what exists, how things connect, and where the entry points are. The LLM queries the graph, finds the minimal set of files it needs, and reads only those.
Demo
https://github.com/user-attachments/assets/a1e4171b-b225-40d4-9210-39453e14b76a
https://github.com/user-attachments/assets/fc3191e5-fc35-4bd7-8372-72af55995883
Same bug, same model, same prompt — the only difference is whether repo-graph is installed.
The task: fix a reversed comparison operator in a Go + Angular monorepo (566 nodes, 620 edges).
Without repo-graph | With repo-graph | |
Tokens used | 75,308 | 29,838 |
Time to fix | 4m 36s | ~30s |
Files explored | ~15 (grep, read, grep, read...) | 2 (flow lookup + handler file) |
Outcome | Found and fixed the bug | Found and fixed the bug |
2.5x fewer tokens. ~9x faster. Same correct fix.
How the test was run
Both runs used identical conditions to keep the comparison fair:
Same model: Claude Opus, 100% (no Haiku routing)
Same prompt: "Groups that were created recently are showing as closed, and old groups show as open. This is backwards — new groups should be open for members to join. Find and fix the bug."
Fresh context: each run started from
/clearwith no prior conversationNo other tools: CLAUDE.md, plugins, hooks, and all other MCP servers were removed for both runs — the only variable was whether repo-graph was installed
No hints: the prompt describes the symptom, not the location — Claude has to find
group_controller.go:57on its own
Without repo-graph, Claude greps for keywords, reads files, greps again, reads more files, and eventually narrows down to the bug. With repo-graph, Claude calls flow("groups"), gets back the exact handler function and file, reads it, and fixes it.
Browse pre-generated examples for FastAPI, Gin, Hono, and NestJS — real graph output you can inspect without installing anything.
The problem
LLMs working on code waste most of their context on orientation:
Reading files that turn out to be irrelevant
Missing connections between components in different languages
Not knowing where a feature starts or what it touches
Loading 50 files when 5 would do
This is expensive, slow, and gets worse as codebases grow.
How repo-graph solves it
repo-graph scans your codebase once and builds a graph of:
Entities: modules, packages, classes, functions, routes, services, components
Relationships: imports, calls, handles, defines, contains, cross-stack HTTP
Flows: end-to-end paths from entry point to data layer
Then it exposes 13 MCP tools that let the LLM:
Orient — "What languages are in this repo? What are the main features?"
Navigate — "Trace the login flow from route to database" / "What's the shortest path between UserService and the payments API?"
Scope — "How many lines would I need to read to understand this feature?" / "Give me just the files I need for this bug fix"
Assess — "What's the blast radius of changing this function?" / "Which files are the biggest maintenance risks?"
The LLM gets structural context in a few hundred tokens instead of reading thousands of lines.
Supported languages
Language | Detection | What it extracts |
Go |
| Packages, functions, HTTP routes (gin/echo/chi/stdlib), imports |
Rust |
| Crates, modules, structs, traits, functions, routes (Actix/Rocket/Axum) |
TypeScript |
| Modules, classes, functions, import relationships |
React |
| Components, hooks, context providers, React Router routes, fetch/axios calls, flows |
Angular |
| Components, services, guards, DI injection, HTTP calls, feature flows |
Vue |
| SFCs, composables, Vue Router routes, fetch/axios calls |
Python |
| Packages, modules, classes, functions, routes (Flask/FastAPI/Django) |
Java/Kotlin |
| Packages, classes, routes (Spring/JAX-RS/Ktor/WebFlux/Micronaut) |
Scala |
| Packages, objects/classes/traits, routes (Play/Akka HTTP/http4s) |
Clojure |
| Namespaces, defn/defprotocol/defrecord, routes (Compojure/Reitit) |
C#/.NET |
| Namespaces, classes, routes (ASP.NET/Minimal API) |
Ruby |
| Files, classes, modules, Rails routes |
PHP |
| Namespaces, classes, interfaces, routes (Laravel/Symfony) |
Swift |
| Files, types (class/struct/enum/protocol/actor), Vapor routes |
C/C++ |
| Sources, headers, classes, structs, enums, namespaces, includes |
Dart/Flutter |
| Modules, classes, widgets, go_router/shelf routes |
Elixir/Phoenix |
| Modules, functions, Phoenix router scopes + routes |
Solidity |
| Contracts, interfaces, libraries, events, inheritance |
Terraform |
| Modules, resources, variables, outputs, module sources |
SCSS |
| File-level bloat analysis |
Cross-cutting extractors (work across all languages):
Data sources — DB/cache/queue/blob/search/email client detection
CLI entrypoints — Python click, JS commander/yargs, Go cobra, Rust clap
gRPC — service/method definitions from
.protofilesQueue consumers — Celery, Dramatiq, BullMQ, Sidekiq, Oban, NATS
Cross-stack HTTP — frontend
fetch/axioscalls linked to backend routes
Multiple languages can match one repo (e.g., Go backend + Angular frontend + SCSS). Each contributes its nodes and edges into a single unified graph.
Install
pip install mcp-repo-graphPython 3.11+. Installs two packages: mcp-repo-graph (the MCP server) and repo-graph-py (the Rust engine, as a prebuilt wheel).
Quick start
1. Initialise the target repo
repo-graph-init --repo /path/to/your/projectThis generates the graph, writes .mcp.json and CLAUDE.md instructions, and gets your AI assistant ready to use repo-graph.
2. Connect to your AI assistant
If you skipped repo-graph-init, add this to your MCP configuration manually:
Claude Code (~/.claude/claude_code_config.json or project .mcp.json):
{
"mcpServers": {
"repo-graph": {
"command": "repo-graph",
"args": ["--repo", "/path/to/your/project"]
}
}
}With environment variable:
{
"mcpServers": {
"repo-graph": {
"command": "repo-graph",
"env": { "REPO_GRAPH_REPO": "/path/to/your/project" }
}
}
}3. Use it
The AI assistant now has access to all 13 tools. Example queries it can answer:
"What does this codebase do?" →
statustool"Trace the checkout flow" →
flowtool"What would break if I change UserService?" →
impacttool"What files do I need for this bug?" →
minimal_readtool"This file is too big, how should I split it?" →
split_plantool"Show me the auth flow visually" →
graph_viewtool
4. Keep it fresh with a git hook (recommended)
Add a call to generate via your MCP client to a pre-commit hook so the graph stays up to date automatically — no LLM context spent on regeneration:
# .git/hooks/pre-commit (or add to your existing hook)
#!/bin/sh
repo-graph --repo . --regenerate
git add .ai/repo-graph/chmod +x .git/hooks/pre-commitEvery commit keeps the graph current. The LLM always has a fresh map without wasting a single token on generate.
Tip: If you don't want graph data in version control, add
.ai/repo-graph/to.gitignoreand skip thegit addline — the graph will just live locally.
MCP tools reference
Generation
Tool | Parameters | Description |
| (none) | Scan the codebase from scratch, rebuild the graph, and reload |
| (none) | Reload graph data from disk (after external regeneration) |
Navigation
Tool | Parameters | Description |
| (none) | Repo overview: git state, detected languages, entity counts, available flows |
|
| End-to-end flow for a feature — from entry point through service layer to data |
|
| Shortest path between any two nodes in the graph |
|
| Fan out from a node to see what it affects or depends on |
|
| All direct connections to and from a node |
Context budgeting
Tool | Parameters | Description |
|
| Total line count for all files in a feature's flow |
|
| Files ranked by |
|
| Smallest file set needed for a specific task within a feature |
Health analysis
Tool | Parameters | Description |
|
| Internal structure of a file: functions/methods ranked by size, type counts |
|
| Concrete suggestions for splitting an oversized file, grouped by responsibility |
|
| Visual ASCII map of a feature flow, node neighbourhood, or full graph overview |
How it works
mcp-repo-graph is a thin Python MCP server that wraps glia, a Rust engine.
Parse — per-language tree-sitter parsers extract raw nodes and unresolved references
Extract — cross-cutting extractors layer on HTTP routes, data sources, CLI entrypoints, gRPC services, queue consumers
Resolve — graph builder resolves intra-repo references; cross-graph resolvers link stacks (frontend HTTP calls → backend routes, etc.)
Store — merged graph lands in
.ai/repo-graph/as a zero-copy.gmap(rkyv + mmap) plus JSON projections for portabilityServe — the MCP server loads the graph into memory and exposes the 13 tools
The Rust engine will split into its own glia repo post-v0.4.12. mcp-repo-graph will remain the MCP-facing thin wrapper.
Config (optional escape hatch)
If auto-detection misses a weird layout, drop .ai/repo-graph/config.yaml in the target repo:
skip:
- legacy # directory basenames excluded from the walk
- scratch
roots: # explicit roots heuristics miss — added on top of auto-detection
- path: apps/weird-layout
kind: python
- path: services/custom
kind: gokind values: go, rust, python, typescript, react, vue, angular, java, scala, clojure, csharp, ruby, php, swift, c_cpp, dart, elixir, solidity, terraform. config.json works too if you prefer.
Graph data format
Generated files live in .ai/repo-graph/ inside the target repo:
nodes.json—[{id, type, name, file_path, confidence, ...}, ...]edges.json—[{from, to, type}, ...]flows/*.yaml— named feature flows with ordered step sequences andkind(http/page/cli/grpc/queue)state.md— human-readable snapshot for quick orientation
Common edge types: imports, defines, contains, uses, calls, handles, handled_by, exports, includes, tests, cross-stack HTTP links.
License
MIT
Support
If repo-graph saved you time, consider buying me a coffee.
Maintenance
Appeared in Searches
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/James-Chahwan/repo-graph'
If you have feedback or need assistance with the MCP directory API, please join our Discord server