mcp-server-chart vs mie
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mie by kraklabs | |
|---|---|---|
| Stars | ★ 4,068 | ★ 42 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Knowledge GraphDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mie · Summary
MIE is a persistent memory graph MCP server that enables AI agents to share and recall knowledge across sessions.
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
mie · Use cases
- Cross-agent knowledge sharing between different AI platforms
- Persistent memory for AI agents working on long-term projects
- Structured knowledge capture for technical decisions and context
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"]
}
}
}mie · Install
Install MIE using Homebrew:
brew tap kraklabs/mie
brew install mieInitialize with:
mie init # Quick setup with defaults
mie init --interview # Interactive setupConfigure as MCP server in Claude Desktop (.mcp.json):
{
"mcpServers": {
"mie": {
"command": "mie",
"args": ["--mcp"]
}
}
}The MCP server will start automatically when needed.