mcp-server-chart vs go-playground-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | go-playground-mcp by samber | |
|---|---|---|
| Stars | ★ 4,068 | ★ 5 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| 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.
go-playground-mcp · Summary
MCP server for executing Go code in Go Playground and generating shareable URLs.
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-playground-mcp · Use cases
- AI assistants that need to execute Go code for code examples or debugging
- Educational tools for learning Go programming language
- Documentation systems that need to include live, executable Go code examples
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-playground-mcp · Install
Install via npm: npm install -g go-playground-mcp
For Claude Desktop, add to config.json:
{
"mcpServers": {
"go-playground": {
"command": "npx",
"args": ["-y", "go-playground-mcp"]
}
}
}