10 stable releases
| 2.1.0 | May 5, 2026 |
|---|---|
| 2.0.1 | Apr 20, 2026 |
| 1.9.0 | Apr 12, 2026 |
| 1.7.0 | Mar 25, 2026 |
| 0.1.0 | Jan 5, 2026 |
#583 in Development tools
Used in arbor-graph-cli
475KB
11K
SLoC
arbor-mcp
Model Context Protocol server for Arbor
Let Claude walk your code graph
Overview
arbor-mcp is the AI Bridge for Arbor. It implements the Model Context Protocol to let LLMs like Claude Desktop navigate your codebase as a graph.
Compared with typical code-intel MCP servers, Arbor focuses on:
- Graph-backed impact analysis (not keyword-only retrieval)
- Explainable confidence and architectural role classification
- Git-aware CI workflows (
arbor diff,arbor check) for change risk gating
MCP Tools
| Tool | Description |
|---|---|
get_logic_path |
Generate an architectural brief for a symbol |
find_path |
Shortest path between two nodes |
analyze_impact |
Predict blast radius of changes |
Why MCP?
Instead of RAG-style "find similar text," Arbor lets the AI:
- Walk the call graph to understand control flow
- Trace imports to find the real source of a symbol
- Predict impact before making changes
Usage
cargo install arbor-graph-cli
arbor setup
arbor bridge # Starts MCP server over stdio
Claude Code (recommended)
claude mcp add --transport stdio --scope project arbor -- arbor bridge
claude mcp list
Inside Claude Code, run:
/mcp
Cursor / VS Code / Claude Desktop
See full multi-client setup in docs/MCP_INTEGRATION.md.
Claude Desktop Config
{
"mcpServers": {
"arbor": {
"command": "arbor",
"args": ["bridge"]
}
}
}
Links
- Main Repository: github.com/Anandb71/arbor
- MCP Registry:
io.github.Anandb71/arbor - Official Registry API (exact lookup): https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.Anandb71/arbor
If
github.com/mcpsearch does not show Arbor yet, rely on the official registry API lookup above (authoritative source).
Dependencies
~134MB
~3M SLoC