mcp-server-chart vs mcp-client-manager-go
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-client-manager-go by VikashLoomba | |
|---|---|---|
| Stars | ★ 4,068 | ★ 3 |
| 30d uses | 10,239 | — |
| Score | 84 | 33 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Go |
| 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.
mcp-client-manager-go · Summary
A Go library that manages multiple MCP servers and provides a unified HTTP gateway for connecting to them.
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-client-manager-go · Use cases
- Build applications that need to interact with multiple MCP servers simultaneously
- Create a unified API gateway for MCP services in Go
- Manage MCP server connections with automatic reconnection and monitoring
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-client-manager-go · Install
go get github.com/vikashloomba/mcp-client-manager-go/pkg/mcpmgr
go get github.com/vikashloomba/mcp-client-manager-go/pkg/mcp-gatewayFor Claude Desktop integration, add this to your Claude Desktop config:
{
"mcpServers": {
"mcp-manager": {
"command": "go",
"args": ["run", "github.com/vikashloomba/mcp-client-manager-go/cmd/gateway-example"]
}
}
}