Labsco
James-Chahwan logo

repo-graph

β˜… 7

from James-Chahwan

Structural graph map of any codebase. LLM queries the graph instead of grepping through everything. 13 languages, auto-detected flows, cross-stack linking. Zero deps.

πŸ”₯πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedFreeQuick setup

repo-graph

repo-graph MCP server

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-graphWith repo-graph
Tokens used75,30829,838
Time to fix4m 36s~30s
Files explored~15 (grep, read, grep, read...)2 (flow lookup + handler file)
OutcomeFound and fixed the bugFound 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 /clear with no prior conversation
  • No 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:57 on 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 11 MCP tools that let the LLM:

  1. Orient β€” "What languages are in this repo? What are the main features?"
  2. Navigate β€” "Trace the login flow from route to database" / "What's the shortest path between UserService and the payments API?"
  3. Scope β€” "How many lines would I need to read to understand this feature?" / "Give me just the files I need for this bug fix"
  4. 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

LanguageDetectionWhat it extracts
Gogo.modPackages, functions, HTTP routes (gin/echo/chi/stdlib), imports
RustCargo.tomlCrates, modules, structs, traits, functions, routes (Actix/Rocket/Axum)
TypeScripttsconfig.json / package.jsonModules, classes, functions, import relationships
Reactreact in package.jsonComponents, hooks, context providers, React Router routes, fetch/axios calls, flows
Angular@angular/core in package.jsonComponents, services, guards, DI injection, HTTP calls, feature flows
Vuevue in package.jsonSFCs, composables, Vue Router routes, fetch/axios calls
Pythonpyproject.toml / setup.py / requirements.txtPackages, modules, classes, functions, routes (Flask/FastAPI/Django)
Java/Kotlinpom.xml / build.gradlePackages, classes, routes (Spring/JAX-RS/Ktor/WebFlux/Micronaut)
Scalabuild.sbtPackages, objects/classes/traits, routes (Play/Akka HTTP/http4s)
Clojureproject.clj / deps.ednNamespaces, defn/defprotocol/defrecord, routes (Compojure/Reitit)
C#/.NET.csproj / .slnNamespaces, classes, routes (ASP.NET/Minimal API)
RubyGemfile / .gemspecFiles, classes, modules, Rails routes
PHPcomposer.jsonNamespaces, classes, interfaces, routes (Laravel/Symfony)
SwiftPackage.swift / .xcodeprojFiles, types (class/struct/enum/protocol/actor), Vapor routes
C/C++CMakeLists.txt / Makefile / meson.buildSources, headers, classes, structs, enums, namespaces, includes
Dart/Flutterpubspec.yamlModules, classes, widgets, go_router/shelf routes
Elixir/Phoenixmix.exsModules, functions, Phoenix router scopes + routes
Solidity.sol files / foundry.toml / hardhat.config.*Contracts, interfaces, libraries, events, inheritance
Terraform.tf filesModules, resources, variables, outputs, module sources
SCSS.scss files presentFile-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 .proto files
  • Queue consumers β€” Celery, Dramatiq, BullMQ, Sidekiq, Oban, NATS
  • Cross-stack HTTP β€” frontend fetch/axios calls 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.

MCP tools reference

repo-graph exposes 13 tools across four tiers.

Generation

ToolParametersDescription
generaterepo_path (optional), incrementalScan the codebase with tree-sitter, rebuild the graph, run cross-stack resolvers, and cache it. Incremental by default β€” only changed files re-parse

Navigation

ToolParametersDescription
status(none)Repo overview: node/edge counts, detected kinds, entry points, dense preview. Call this first to orient
flowfeatureEnd-to-end flow for a feature β€” entry point β†’ service layer β†’ data store, in layered tiers
tracefrom_node, to_nodeShortest path between two nodes, hop by hop with tier transitions
impactnodes (comma-separated), direction, depth, modeBlast radius β€” what nodes affect (downstream) or depend on (upstream). Pass several nodes for a whole-diff radius
neighboursnodeAll direct connections to and from a node, one hop each way
readnode, context_linesReturn a node's source code, sliced from its file by the graph's line span β€” read the exact code without grepping

Activation & context

ToolParametersDescription
activateseeds, top_k, profile, modeSpreading activation (Personalized PageRank) from seed nodes β€” the most relevant nodes to your seeds. profile retunes for repair/review/onboard
findqueryFind nodes by name or qualified-name pattern
locatesignal, kind (stacktrace/test/diff/auto), top_k, modeResolve a stacktrace, failing-test id, or diff to the most relevant nodes β€” paste the error, get the code that matters
dense_textseed (optional), budgetThe graph in dense sigil notation β€” the primary context tool. With seed, returns just that node's neighbourhood (scoped map)

Health & admin

ToolParametersDescription
graph_viewnode (optional), depthVisual ASCII map β€” a node's tree/neighbourhood, or the full overview
reloadincrementalRe-generate the graph from source after code changes. Incremental by default

Most read tools also take a budget (max chars) so a result fits a small-model context window. activate / impact / locate take mode=prose to return the ranked subgraph as primed prose instead of a table.

How it works

mcp-repo-graph is a thin Python MCP server that wraps glia, a Rust engine.

  1. Parse β€” per-language tree-sitter parsers extract raw nodes and unresolved references
  2. Extract β€” cross-cutting extractors layer on HTTP routes, data sources, CLI entrypoints, gRPC services, queue consumers
  3. Resolve β€” graph builder resolves intra-repo references; cross-graph resolvers link stacks (frontend HTTP calls β†’ backend routes, etc.)
  4. Store β€” merged graph lands in .ai/repo-graph/ as a zero-copy .gmap (rkyv + mmap) plus JSON projections for portability
  5. Serve β€” the MCP server loads the graph into memory and exposes the 13 tools

The Rust engine lives in its own glia repo; mcp-repo-graph is 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:

Copy & paste β€” that's it
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: go

kind 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 and kind (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.

Privacy Policy

repo-graph runs on your machine and is built to keep your code there. Full text: PRIVACY.md.

  • Telemetry / analytics: None. No tracking, no update checks, no phone-home.
  • Data collection & sharing: None. Your source code and graph data are never sent to repo-graph, its author, or any third party.
  • Local processing & storage: Scanning and graph-building happen locally; the graph is cached in your project's .ai/repo-graph/ directory and stays on your device.
  • Network access β€” only two cases, both user-initiated:
    1. Installation β€” uvx/pip downloads the package and its prebuilt engine wheel from PyPI.
    2. Git-URL targets β€” if you pass a git URL to --repo, repo-graph runs git clone against the URL you specified; nothing is sent to repo-graph or its author. A local --repo path (the default) makes zero network calls.
  • Data retention: The local cache persists until you delete it β€” fully under your control.
  • Contact: GitHub issues

License

MIT

Support

If repo-graph saved you time, consider buying me a coffee.

<p align="center"> <a href="https://buymeacoffee.com/polycrisis"> <img src="docs/bmc-qr.png" alt="Buy Me a Coffee" width="200"> </a> <br> <a href="https://buymeacoffee.com/polycrisis">buymeacoffee.com/polycrisis</a> </p> <!-- mcp-name: io.github.James-Chahwan/repo-graph -->