mcp-server-chart vs studio
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | studio by decocms | |
|---|---|---|
| Stars | ★ 4,068 | ★ 371 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| 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.
studio · Summary
An open-source control plane for AI agents, integrating MCP tools with tracking and organization.
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
studio · Use cases
- Team-based AI agent management with shared tools and cost tracking
- Building custom AI applications by composing specialized agents with MCP tools
- Monitoring and governing AI agent performance and API usage across projects
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"]
}
}
}studio · Install
Installation
Quick Start
bunx decocmsFrom Source
git clone https://github.com/decocms/studio.git
bun install
bun run devThe server runs at http://localhost:3000 with both client and API server.
Docker
# With embedded PostgreSQL
docker compose -f deploy/docker-compose.yml up
# With external PostgreSQL
docker compose -f deploy/docker-compose.postgres.yml upClaude Desktop Integration
Add this to your Claude Desktop config.json:
{
"mcpServers": {
"deco": {
"command": "bun",
"args": ["x", "decocms"]
}
}
}