MCP Catalogs
Home

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 uses10,239
Score8445
Official
Categories
AI / LLM ToolsDeveloper ToolsProductivity
Knowledge GraphAI / LLM ToolsDeveloper Tools
LanguageTypeScriptGo
Last committhis month11 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-chart

For 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

  1. Clone the repository and set up the environment:
git clone <repo>
cd eion
docker-compose up -d
  1. 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
  1. Install Python dependencies:
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
  1. Build and run the server:
go build -o eion-server ./cmd/eion-server
./eion-server

For 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"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.