mcp-server-chart vs ark-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ark-mcp by vpopescu | |
|---|---|---|
| Stars | ★ 4,068 | ★ 0 |
| 30d uses | 10,239 | — |
| Score | 84 | 30 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | Rust |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ark-mcp · Summary
Enterprise MCP server supporting WebAssembly plugins as MCP tools.
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
ark-mcp · Use cases
- Enterprise tool integration via WASM plugins
- Custom MCP tool development for various languages
- Secure token-based access for MCP services
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"]
}
}
}ark-mcp · Install
Installation
- Using Docker (recommended for quick start):
docker build -t ark-tryout -f docker/Dockerfile .
docker run --rm -p 8000:8000 -p 3001:3001 --mount type=bind,source="$(pwd)/docker/config.yaml",target=/etc/ark.config.yaml,readonly ark-tryout- From source:
git clone https://github.com/vpopescu/ark-mcp
cd ark-mncargo build --releaseClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"ark": {
"command": "ark",
"args": ["serve"]
}
}
}