mcp-server-chart vs go-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | go-mcp by dstotijn | |
|---|---|---|
| Stars | ★ 4,068 | ★ 16 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
go-mcp · Summary
A Go library for implementing MCP servers with protocol support, type-safe handlers, and validation.
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
go-mcp · Use cases
- Building MCP servers in Go for enterprise AI applications
- Creating Go-based clients to interact with MCP services
- Implementing custom MCP tools with strong typing and validation
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"]
}
}
}go-mcp · Install
Installation
go get github.com/dstotijn/go-mcpFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"go-mcp": {
"command": "go",
"args": ["run", "github.com/dstotijn/go-mcp"]
}
}
}