mcp-server-chart vs mcp-proxy-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-proxy-server by ptbsare | |
|---|---|---|
| Stars | ★ 4,068 | ★ 194 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsOps & InfraProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 10 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-server · Summary
A central proxy server that aggregates and manages multiple MCP servers through a unified HTTP or SSE endpoint with web UI.
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-server · Use cases
- Organizing multiple MCP servers into a single endpoint for client applications
- Managing tool access and permissions through the web admin interface
- Monitoring installation progress of stdio servers through the web UI
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-server · Install
Installation
- Clone the repository:
git clone https://github.com/ptbsare/mcp-proxy-server.git
cd mcp-proxy-server- Install dependencies:
npm install- Configure your backend servers in
config/mcp_server.json
- Run the server:
npm run dev # for Stdio mode
npm run dev:sse # for SSE and HTTP endpointsClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"mcp-proxy": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"ENABLE_ADMIN_UI": "true"
}
}
}
}