mcp-server-chart vs guild
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | guild by mathomhaus | |
|---|---|---|
| Stars | ★ 4,068 | ★ 190 |
| 30d uses | 10,239 | — |
| Score | 84 | 51 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| 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.
guild · Summary
Go-based MCP server providing shared context and task coordination for AI coding agents with hybrid search.
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
guild · Use cases
- Coordination between multiple AI coding agents working on the same project
- Knowledge retention across different AI client sessions
- Parallel development with task dependencies and atomic claims
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"]
}
}
}guild · Install
Installation Options
**Recommended (with semantic retrieval):**
curl -fsSL https://github.com/mathomhaus/guild/releases/latest/download/install.sh | sh
guild --version**Via Homebrew:**
brew install mathomhaus/tap/guild**From source:**
git clone https://github.com/mathomhaus/guild
cd guild
make install # includes semantic retrieval assetsProject Setup
cd ~/projects/myapp
guild init # interactive setup processClaude Desktop Configuration
Add to Claude Desktop's config.json:
"mcpServers": {
"guild": {
"command": "guild",
"args": ["serve"]
}
}