mcp-server-chart vs ace-mcp-go
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ace-mcp-go by xiaoxu123195 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 18 |
| 30d uses | 10,239 | — |
| Score | 84 | 38 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsSearch |
| Language | TypeScript | Go |
| Last commit | this month | 6 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
ace-mcp-go · Summary
Go-based MCP server for codebase indexing and semantic search with Augment compatibility.
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
ace-mcp-go · Use cases
- AI-assisted code review and understanding
- Bug debugging and issue localization
- Quick understanding of large codebases
- Code refactoring assistance
- Automated documentation generation
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"]
}
}
}ace-mcp-go · Install
Installation
- Clone the repository:
git clone https://github.com/xiaoxu123195/ace-mcp-go.git
cd ace-mcp-go- Install dependencies and build:
make install
make build- Run the MCP server:
./bin/acemcpFor Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"acemcp-go": {
"command": "/path/to/ace-mcp-go/bin/acemcp"
}
}
}