mcp-server-chart vs eion
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | eion by eiondb | |
|---|---|---|
| Stars | ★ 4,068 | ★ 155 |
| 30d uses | 10,239 | — |
| Score | 84 | 45 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphAI / LLM ToolsDeveloper Tools |
| Language | TypeScript | Go |
| Last commit | this month | 11 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
eion · Summary
Eion provides a shared memory storage with knowledge graph capabilities for multi-agent systems via MCP server.
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
eion · Use cases
- Multi-agent systems with shared memory and knowledge
- LLM applications with persistent conversation history
- Agent agencies with sequential or concurrent processing
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"]
}
}
}eion · Install
Installation
- Clone the repository and set up the environment:
git clone <repo>
cd eion
docker-compose up -d- Setup database extensions:
docker exec eion_postgres psql -U eion -d eion -c "CREATE EXTENSION IF NOT EXISTS vector;"
docker exec -i eion_postgres psql -U eion -d eion < database_setup.sql- Install Python dependencies:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt- Build and run the server:
go build -o eion-server ./cmd/eion-server
./eion-serverFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"eion": {
"command": "python",
"args": ["-m", "internal.mcp.server"],
"env": {"EION_BASE_URL": "http://localhost:8080"},
"cwd": "/path/to/eion"
}
}
}