arbor vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
arbor by Anandb71 | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 117 | ★ 149 |
| 30d uses | — | — |
| Score | 49 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | AI / LLM ToolsBrowser AutomationFile System |
| Language | Rust | Python |
| Last commit | this month | 2 mo ago |
arbor · Summary
A graph-native code intelligence tool with 10 MCP tools for analyzing code dependencies and impact.
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
arbor · Use cases
- Analyzing code impact before refactoring
- Finding all callers and callees of a function
- Blocking PRs with high architectural blast radius in CI/CD
- Exploring code structure and dependencies visually
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
arbor · Install
Installation
CLI Installation
# Rust / Cargo
cargo install arbor-graph-cli
# Homebrew (macOS/Linux)
brew install Anandb71/tap/arbor
# Scoop (Windows)
scoop bucket add arbor https://github.com/Anandb71/arbor
scoop install arbor
# Docker
docker pull ghcr.io/anandb71/arbor:latestMCP Integration
claude mcp add --transport stdio --scope project arbor -- arbor bridge
claude mcp listInitialize a Project
cd your-project
arbor setupUsage
# See what a function impacts
arbor refactor <symbol-name>
# Check impact of uncommitted changes
arbor diff
# Launch GUI
arbor guiultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_server