mcp-server-chart vs go-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | go-mcp-server by cbrgm | |
|---|---|---|
| Stars | ★ 4,068 | ★ 6 |
| 30d uses | 10,239 | — |
| Score | 84 | 37 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | Go |
| 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-mcp-server · Summary
A learning MCP server in Go that implements tea-related tools, resources, and prompts with stdio and HTTP transport options.
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-server · Use cases
- Educational tool for learning MCP implementation
- Tea information retrieval system
- Demo server for MCP protocol testing
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-server · Install
Installation
- Clone the repository:
git clone https://github.com/cbrgm/go-mcp-server.git
cd go-mcp-server- Build the binary:
go build ./cmd/go-mcp-server- Run the server:
# Default stdio transport
./go-mcp-server
# HTTP transport
./go-mcp-server -transport http -port 8080**Claude Desktop Configuration:**
{
"mcpServers": {
"tea": {
"command": "go",
"args": ["run", "./cmd/go-mcp-server"],
"cwd": "/path/to/go-mcp-server"
}
}
}