mcp-server-chart vs mcp.mbt
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp.mbt by colmugx | |
|---|---|---|
| Stars | ★ 4,068 | ★ 2 |
| 30d uses | 10,239 | — |
| Score | 84 | 34 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | MoonBit |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
mcp.mbt · Summary
Type-safe MCP server implementation in MoonBit with dual transport support (STDIO/HTTP).
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
mcp.mbt · Use cases
- Building custom AI tools for Claude Desktop with MoonBit's type safety
- Creating MCP servers that need to serve both desktop and web clients
- Developing production-ready MCP servers with structured error handling
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"]
}
}
}mcp.mbt · Install
moon add colmugx/mcpFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"my-server": {
"command": "moon",
"args": ["run", "path/to/your_server.mbt"]
}
}
}To run the example server:
moon run @examples/cmd/main