Skip to main content
Glama

gitatlas

One map. Every repo. Down to the function.

Point it at a folder of repositories. Get one interactive HTML file that zooms from your whole system, to a repo, to a module, to a single function. No server, no cloud, no account. Your code never leaves your machine.

CI License: MIT Node Languages

Real output: flask, click, and jinja in one map. 216 modules, 4,083 symbols, 6,679 edges.


Why

Agents write the code now. Somebody still has to understand it.

Writing code stopped being the bottleneck. Understanding a codebase you did not write, and increasingly that nobody wrote, is the expensive part. Your architecture diagram describes a company you no longer work at, and the one person who understood billing left in March.

gitatlas makes the map a file. One command, one HTML file, openable by anyone from the intern to the VP.

Related MCP server: CodeGraph

Quick start

Requires Node 22 or newer. No native builds, no database, no daemon.

npm install -g gitatlas        # or one-off: npx gitatlas extract /path/to/your/repos
gitatlas extract /path/to/your/repos

Open the index.html it prints at the end. That is the whole install. (About 60 MB on disk, dominated by the WASM grammars that cover 21 languages with zero native compilation.)

Working on gitatlas itself? The clone needs no build step:

git clone https://github.com/adityaarakeri/gitatlas && cd gitatlas
npm install
npm run extract -- fixtures && open fixtures/.gitatlas/index.html

What you get

Four zoom levels, and the camera flies between them.

Tree

Every repo, directory, and file on one page, folding and unfolding

Group

Repos as nodes

Module

Files, their imports, shaded neighborhoods, red-ringed hubs

Symbol

Functions, classes, methods, inheritance, and gold call edges

Symbol level inside flask/app.py. Gold lines are calls: who actually invokes whom.

Neighborhoods are computed, not filed. Shaded regions group files that lean on each other and touch the rest lightly. When a utils file has quietly become load-bearing for billing, it shows up inside the billing neighborhood no matter which folder it lives in.

Hubs are where change ripples widest. A red ring marks the modules far above typical connection count. First place to look before a refactor, last place to edit casually on a Friday.

Press ⌘K and go anywhere. Type a few letters of any repo, file, class, or function across the entire group, and the camera flies to it. Hovering any node dims everything except its direct connections, so you can trace one module's wiring through a dense map without losing your place.

Feed it to your coding agent

Agents are brilliant sprinters with amnesia. Every session yours greps around, rebuilds a mental model from scratch, and bills you for it. Hand it the map instead.

gitatlas brief --budget 1500     # token-budgeted markdown digest for a system prompt
claude mcp add gitatlas -- gitatlas mcp --out /path/to/repos/.gitatlas

The MCP server exposes five tools over stdio: brief, scope (stack trace to ranked suspects), find_symbol, module_info, and check_freshness. It re-verifies source fingerprints before every answer, so an agent is never handed stale file:line data without a warning inside the result.

A map that has drifted from the code is worse than no map. gitatlas check exits 1 when anything is stale, and gitatlas extract --if-stale is the one-liner for CI jobs and agent hooks.

Details in docs/agents.md.

Three rules it will not break

  1. The schema is the contract. Extractor and viewer never know about each other.

  2. Artifacts are files. No daemon, no database, no required network.

  3. Every edge carries confidence. exact, resolved, or inferred. Guesses are drawn dashed and labeled. Nothing is upgraded to a fact.

Nothing comes from a language model. When helper() could be three different symbols, gitatlas emits no edge rather than a wrong one. Same repos in, pixel-identical map out, every run.

How it compares

Scope

Who authors the model

Output

gitatlas

a folder of repos

the extractor

one local HTML file

GitNexus, CodeGraph

one repo per graph

the extractor

a graph for agents

Structurizr

whatever you declare

you, by hand

rendered C4 diagrams

Sourcegraph

org-wide

the indexer

a hosted search UI

Hand-written models drift the day their author goes on holiday. This one regenerates from the code.

Commands

Command

What it does

gitatlas extract <folder>

Build the map

gitatlas check <folder>

Exit 0 fresh, 1 stale

gitatlas brief

Token-budgeted digest for agent context

gitatlas mcp

Serve the map to agents over MCP

gitatlas scope

Rank the neighborhood around a bug signal

gitatlas site

Hosted playground for public GitHub repos

Full flags, repo discovery, submodule modes, and ignore globs: docs/cli.md.

Honest limitations

  • 21 languages, but call edges resolve in 14 of them so far. The rest still get symbols, imports, and inheritance.

  • No cross-repo edges yet. Repo A calling repo B over HTTP is invisible to static analysis. The boundary stitcher is next.

  • Unused-symbol rings are a hint, not a verdict. Matching is name-based and repo-local, so a function consumed from another repo looks lonelier than it is.

  • The viewer's fonts load from Google Fonts. d3 is vendored in, so the map itself renders offline. Only the type falls back to system faces.

The full list, including the Node 24 V8 flag and per-language privacy conventions, is in docs/internals.md.

Put it in every repo

Every repo should ship with its own map, the same way it ships with a README.

Copy examples/github-action.yml into .github/workflows/gitatlas.yml and every push to main regenerates the map as a downloadable artifact. Point the upload step at GitHub Pages instead and it becomes a URL your team can bookmark.

Roadmap

Next: the cross-repo stitcher (HTTP routes and clients, queue topics, shared-package joins), a per-repo touchpoint inventory (env vars, databases, third-party SDKs), watch mode with incremental re-extraction, and proper multi-level clustering if large repos show fragmented neighborhoods.

Already shipped: call edges (0.9.0), precomputed deterministic layout and the command palette (0.8.0), 21 languages (0.7.0), neighborhoods and hubs (0.6.0), the scope bug scoper (0.4.0).

Docs

Contributing

Read CONTRIBUTING.md. The most valuable contribution right now is a new language extractor, and the doc walks through exactly what one has to emit.

License

MIT

A
license - permissive license
-
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • A
    license
    -
    quality
    D
    maintenance
    Provides AI assistants with a structured, token-efficient map of a codebase's symbols, dependencies, and relationships via MCP tools like overview, query, and impact analysis.
    Last updated
    8
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Enables AI coding agents to efficiently explore codebases by providing structural outlines, module digests, symbol bodies, and AST-aware grep via MCP.
    Last updated
    4
    53
    MIT

View all related MCP servers

Related MCP Connectors

  • Repo intel for AI coding agents: overview, PRs, contributors, hot files, CI, deps. Remote MCP.

  • Shared long-term memory vault for AI agents with 20 MCP tools.

  • User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.

View all MCP Connectors

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/adityaarakeri/gitatlas'

If you have feedback or need assistance with the MCP directory API, please join our Discord server