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

MIT license

475KB
11K SLoC

Arbor

arbor-mcp

Model Context Protocol server for Arbor
Let Claude walk your code graph

Crates.io MCP Glama Score Skills Playground License


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 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"]
    }
  }
}

If github.com/mcp search does not show Arbor yet, rely on the official registry API lookup above (authoritative source).

Dependencies

~134MB
~3M SLoC