repo-atlas-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| NEO4J_URI | Yes | The connection URI for the Neo4j instance (e.g., neo4j+s://xxxxxxxx.databases.neo4j.io) | |
| NEO4J_USER | Yes | The username for the Neo4j instance (typically 'neo4j') | |
| NEO4J_PASSWORD | Yes | The password for the Neo4j instance |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| index_repoA | Parse a repository and build its code graph in Neo4j. Run this once per project, and again after significant changes — unchanged files are skipped by content hash, so re-indexing is cheap. Supports Python, TypeScript, TSX and JavaScript. |
| find_symbolA | Locate the definition of a function, class or method by name. Accepts a bare name ( |
| who_callsA | Every symbol that reaches this one through the call graph, nearest first. This is the question grep answers badly: it finds the name, not the callers. |
| what_it_callsB | Everything this symbol calls, transitively — the downstream surface of a function. |
| impact_ofA | What breaks if this symbol changes. Returns everything transitively upstream, split into production callers and the tests that reach it. An empty test list means the change is unguarded — check this before editing shared code. |
| path_betweenB | How control actually flows from one symbol to another — e.g. from an HTTP handler to a database write. |
| hotspotsA | Symbols with the most distinct callers — the code where a mistake propagates furthest. Ranked by in-degree, which works on Neo4j AuraDB Free (no GDS required). |
| module_mapB | Import edges aggregated to top-level directories — a quick read on the architecture and on which packages depend on which. |
| list_reposA | Which repositories are in the graph, and how many files each has. |
| drop_repoB | Delete every node belonging to a repository. Irreversible. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |