Axon.MCP.Server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
Axon.MCP.Server by ali-kamali | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 165 | ★ 85,748 |
| 30d uses | — | — |
| Score | 50 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
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.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
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"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything