mcp-server-chart vs godoc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | godoc-mcp by mrjoshuak | |
|---|---|---|
| Stars | ★ 4,068 | ★ 117 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsFile System |
| Language | TypeScript | Go |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
godoc-mcp · Summary
MCP server that provides efficient access to Go documentation to reduce token usage when AI coding agents work with Go projects.
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
godoc-mcp · Use cases
- Exploring Go projects by discovering packages and their purposes
- Understanding Go interfaces and API documentation for implementation guidance
- Efficiently analyzing Go codebases without loading entire source files into context
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"]
}
}
}godoc-mcp · Install
Installation
Go Install
go install github.com/mrjoshuak/godoc-mcp@latestDocker
docker pull ghcr.io/mrjoshuak/godoc-mcp:latestClaude Desktop
Add to your MCP configuration:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp"
}
}
}For local projects, set environment variables:
{
"mcpServers": {
"godoc": {
"command": "godoc-mcp",
"env": {
"GOPATH": "/path/to/go",
"GOMODCACHE": "/path/to/go/pkg/mod"
}
}
}
}