Inspired by debuggers, decoder is a static call graph analysis tool for Python. It maps how your code connects, tracing those connections from the routing layer to service layer and across the codebase, without the runtime execution a debugger would require.
Unlike grep, which matches text, decoder traces a symbol's call chain and shows what calls it and what it calls. It also tracks conditionals, loops, and try/except blocks, so you see the full nested context of your methods or functions.
Under the hood, decoder parses the Python Abstract Syntax Tree (AST) to generate a relational graph, persisted in a local SQLite index (.decoder/index.db).
Interfaces:
-
For AI: An MCP server that exposes the codebase's topology, allowing LLMs to perform targeted graph traversals rather than iterative grep and file reads, significantly reducing token consumption and latency
-
For engineers: A CLI and VS Code extension that enables interactive trace exploration
cd your-project
pip install mcp-server-decoder
decoder index .
claude mcp add decoder -- mcp-server-decoderVerify it's connected. In Claude, run:
/mcp
# then, "MCP Status"You should see decoder listed with its available tools.
| Tool | Parameters | Description |
|---|---|---|
decoder_callers |
name |
Find what calls a function |
decoder_callees |
name |
Find what a function calls |
decoder_trace |
name, max_depth? |
Trace full call tree |
decoder_find |
query, type? |
Search for symbols |
decoder_stats |
- | View index statistics |
Install:
pip install decoder-graphIndex your codebase:
decoder index .Trace a function or method in your code:
decoder trace create_todoExample output:
Call tree for create_todo
routes/todos.py:34
Callees:
└─ validate_request [if request.data] routes/todos.py:12
└─ TodoService.create services/todo.py:45
└─ TodoRepository.save [in try] repositories/todo.py:23
└─ Session.add db/session.py:67
Decoder includes a VS Code extension for interactive call graph exploration.
Install in VS Code | VS Code Marketplace
Before using the extension, index your codebase:
decoder index .Then in VS Code:
- Right-click any function to:
- Show Callers
- Show Callees
- Trace Call Tree
- Explore call trees in the Decoder sidebar
- Step through execution paths using the Trace Player
- Show Callers / Callees
- Hierarchical Call Tree View
- Trace Player with Code Highlighting
- Playback Controls (Play, Pause, Step)
{
"decoder.pythonPath": "python",
"decoder.playSpeed": 1500
}Decoder annotates calls with execution context, mapping the conditions that trigger each call.
| Annotation | Meaning |
|---|---|
[if condition] |
Inside an if/else block |
[in loop] |
Inside a for/while loop |
[in try] |
Inside a try block |
[in except] |
Inside an exception handler |
Contributions are welcome, please see CONTRIBUTING.md for guidelines.
MIT

