mcp-server-chart vs metamcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | metamcp by metatool-ai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2,328 |
| 30d uses | 10,239 | — |
| Score | 84 | 55 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
metamcp · Summary
MetaMCP is a unified MCP proxy that aggregates multiple MCP servers into one with middleware support.
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
metamcp · Use cases
- Grouping multiple MCP servers into a single namespace with a public endpoint
- Remixing MCP servers by selecting specific tools for specific use cases
- Enhanced debugging and inspection of MCP server configurations
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"]
}
}
}metamcp · Install
Installation
- **Docker Compose (Recommended)**:
git clone https://github.com/metatool-ai/metamcp.git
cd metamcp
cp example.env .env
docker compose up -d- **Local Development**:
pnpm install
pnpm devClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"metamcp": {
"command": "docker",
"args": ["run", "--rm", "metatool-ai/metamcp"]
}
}
}