arbor-mcp

Crates.ioarbor-mcp
lib.rsarbor-mcp
version1.0.1
created_at2026-01-05 12:09:50.378975+00
updated_at2026-01-07 18:52:01.009982+00
descriptionModel Context Protocol server for Arbor
homepage
repository
max_upload_size
id2023710
size65,533
Anand B (Anandb71)

documentation

README

Arbor

arbor-mcp

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

Crates.io MCP 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.

MCP Tools

Tool Description
get_context Retrieve semantic neighborhood of a node
find_path A* shortest path between two nodes
analyze_impact Predict blast radius of changes
list_symbols Fuzzy search across the graph

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 bridge  # Starts MCP server over stdio

Claude Desktop Config

{
  "mcpServers": {
    "arbor": {
      "command": "arbor",
      "args": ["bridge"]
    }
  }
}

Links

Commit count: 0

cargo fmt