mcp-server-chart vs go-mcp-mysql
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | go-mcp-mysql by Zhwt | |
|---|---|---|
| Stars | ★ 4,068 | ★ 53 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Go |
| Last commit | this month | 4 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-mysql · Summary
A production-ready Go-based MCP server for MySQL database operations with read-only mode and query plan checking.
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-mysql · Use cases
- Automating database queries and data analysis through AI assistants
- Enabling natural language interfaces for MySQL database operations
- Safely exploring database structures with read-only access before making changes
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-mysql · Install
Installation
Option 1: Download Binary
- Get the latest [release](https://github.com/Zhwt/go-mcp-mysql/releases)
- Place it in your
$PATHor easily accessible location
Option 2: Build from Source
go install -v github.com/Zhwt/go-mcp-mysql@latestConfiguration
Add to Claude Desktop configuration:
{
"mcpServers": {
"mysql": {
"command": "go-mcp-mysql",
"args": [
"--host", "localhost",
"--user", "root",
"--pass", "password",
"--port", "3306",
"--db", "mydb"
]
}
}
}