mcp-server-chart vs gopher-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | gopher-mcp by GopherSecurity | |
|---|---|---|
| Stars | ★ 4,068 | ★ 114 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | C++ |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
gopher-mcp · Summary
A comprehensive C++ SDK for MCP with enterprise features and multi-language bindings.
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
gopher-mcp · Use cases
- Building AI-powered applications for embedded systems and IoT devices
- Creating high-frequency trading and real-time applications with low latency
- Developing native desktop and mobile applications with MCP capabilities
- Integrating AI capabilities into game engines and graphics applications
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"]
}
}
}gopher-mcp · Install
Installation
Prerequisites
- C++14 compiler (GCC 8+, Clang 10+, MSVC 2019+)
- CMake 3.10+
- libevent 2.1+
- OpenSSL 1.1+ (optional, for TLS)
Build and Install
# Show all available commands
make help
# Build
make
# Install (auto-prompts for sudo if needed)
make install
# Run tests
make testConfiguration for Claude Desktop
Add to claude_desktop_config.json:
{
"mcpServers": {
"gopher-mcp": {
"command": "path/to/gopher-mcp",
"args": []
}
}
}