mcp-server-chart vs scrumboy
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | scrumboy by markrai | |
|---|---|---|
| Stars | ★ 4,068 | ★ 241 |
| 30d uses | 10,239 | — |
| Score | 84 | 49 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | ProductivityDeveloper ToolsAI / LLM Tools |
| 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.
scrumboy · Summary
Scrumboy is a self-hosted Kanban project management tool with MCP support for AI agents.
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
scrumboy · Use cases
- AI agents creating and managing project tasks through MCP
- Automated project status reporting for CI/CD pipelines
- Voice-controlled task management via integrated voice commands
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"]
}
}
}scrumboy · Install
Install Scrumboy
- **Docker (Recommended)**
``bash docker compose up --build ``
- **From source**
``bash go run ./cmd/scrumboy ``
- **MCP Configuration for Claude Desktop**
Add to your Claude Desktop config.json: ``json { "mcpServers": { "scrumboy": { "command": "curl", "args": ["-X", "POST", "http://localhost:8080/mcp/rpc"], "env": { "SCRUMBOY_TOKEN": "your_token_here" } } } } ` Generate your token via: `bash curl -b cookies.txt -X POST http://localhost:8080/api/me/tokens \ -H "Content-Type: application/json" \ -H "X-Scrumboy: 1" \ -d '{"name":"cli"}' ``