Axon.MCP.Server vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
Axon.MCP.Server by ali-kamali | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 165 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 50 | 84 |
| Official | — | — |
| Categories | Developer ToolsAI / LLM ToolsKnowledge Graph | AI / LLM ToolsDeveloper ToolsProductivity |
| 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.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
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
mcp-server-chart · Use cases
- Data analysts creating visual reports from datasets
- AI assistants generating custom charts based on user requests
- Web applications embedding visualization capabilities via HTTP API
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"
}
}
}
}mcp-server-chart · Install
Installation
Install globally:
npm install -g @antv/mcp-server-chartFor Desktop Apps (e.g., Claude Desktop, VSCode):
{
"mcpServers": {
"mcp-server-chart": {
"command": "npx",
"args": ["-y", "@antv/mcp-server-chart"]
}
}
}For Windows:
{
"mcpServers": {
"mcp-server-chart": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@antv/mcp-server-chart"]
}
}
}