mcp-server-chart vs mcp-proxy
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-proxy by tbxark | |
|---|---|---|
| Stars | ★ 4,068 | ★ 691 |
| 30d uses | 10,239 | — |
| Score | 84 | 52 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraAI / LLM Tools |
| Language | TypeScript | Go |
| 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.
mcp-proxy · Summary
MCP proxy server that aggregates multiple MCP servers behind a single HTTP entrypoint with flexible configuration options.
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
mcp-proxy · Use cases
- Consolidating multiple MCP servers behind a single entrypoint for easier client connection
- Aggregating tools and resources from various providers into a unified MCP interface
- Creating a gateway for MCP servers with different communication protocols
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"]
}
}
}mcp-proxy · Install
Installation Options
Build from Source
git clone https://github.com/tbxark/mcp-proxy.git
cd mcp-proxy
make build
./build/mcp-proxy --config path/to/config.jsonInstall via Go
go install github.com/tbxark/mcp-proxy@latestDocker
docker run -d -p 9090:9090 -v /path/to/config.json:/config/config.json ghcr.io/tbxark/mcp-proxy:latestClaude Desktop Configuration
Add to Claude Desktop config.json:
{
"mcpServers": {
"mcp-proxy": {
"command": "mcp-proxy",
"args": ["--config", "/path/to/config.json"]
}
}
}