Axon.MCP.Server vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
Axon.MCP.Server by ali-kamali | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 165 | ★ 149 |
| 30d uses | — | — |
| Score | 50 | 85 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | AI / LLM ToolsBrowser AutomationFile System |
| Language | Python | Python |
| Last commit | this month | 2 mo ago |
Axon.MCP.Server · Summary
MCP server that transforms codebases into intelligent knowledge bases for AI IDEs like Cursor and AntiGravity with semantic analysis and vector search.
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.
Axon.MCP.Server · Use cases
- AI IDE integration for Cursor and Google AntiGravity to provide intelligent code assistance
- Enterprise codebase analysis with semantic search across large repositories
- Automated architecture visualization and dependency mapping for development teams
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
Axon.MCP.Server · Install
Quick Start with Docker
# Clone the repository
git clone https://github.com/ali-kamali/Axon.MCP.Server.git
cd axon.mcp.server
# Copy environment template
cp .env.example .env
# Edit .env with your credentials
# Set GITLAB_TOKEN or AZUREDEVOPS_PASSWORD
# Set ADMIN_API_KEY and ADMIN_PASSWORD
# Start all services
make docker-up
# Run database migrations
make migrateClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"axon": {
"command": "python",
"args": ["-m", "uvicorn", "axon_mcp_server.main:app", "--host", "0.0.0.0", "--port", "8001"],
"env": {
"AXON_ADMIN_API_KEY": "your-api-key"
}
}
}
}ultimate_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