mcp-server-chart vs atlas-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | atlas-mcp-server by cyanheads | |
|---|---|---|
| Stars | ★ 4,068 | ★ 475 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphProductivityDeveloper Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
atlas-mcp-server · Summary
A Neo4j-powered MCP server implementing three-tier project/task/knowledge management for LLM agents with deep research capabilities.
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
atlas-mcp-server · Use cases
- Managing complex multi-agent workflows with project, task, and knowledge components
- Research and development teams tracking project dependencies and knowledge bases
- LLM applications that need structured task management with relationship tracking
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"]
}
}
}atlas-mcp-server · Install
Installation
- Clone the repository:
git clone https://github.com/cyanheads/atlas-mcp-server.git
cd atlas-mcp-server- Install dependencies:
npm install- Configure Neo4j (start with Docker):
docker-compose up -dUpdate .env with Neo4j connection details.
- Build the project:
npm run buildClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"atlas": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"NEO4J_URI": "bolt://localhost:7687",
"NEO4J_USER": "neo4j",
"NEO4J_PASSWORD": "yourpassword"
}
}
}
}