mcp-server-chart vs cesium-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | cesium-mcp by gaopengbin | |
|---|---|---|
| Stars | ★ 4,068 | ★ 103 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | JavaScript |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
cesium-mcp · Summary
AI-powered CesiumJS 3D globe control with 49 tools for camera, entities, layers, animation & spatial analysis via MCP.
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
cesium-mcp · Use cases
- Natural language control of 3D Earth visualizations in web applications
- AI-powered GIS analysis through conversational interface
- Integration of 3D globe capabilities into AI assistants like Claude and Cursor
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"]
}
}
}cesium-mcp · Install
Installation
Option 1: Browser Agent (Recommended for quick start)
- Visit the [live demo](https://cesium-browser-agent.pages.dev/)
- Fork the [examples/browser-agent](https://github.com/gaopengbin/cesium-mcp/tree/main/examples/browser-agent) folder to deploy your own
Option 2: Function Calling in web app
npm install cesium-mcp-bridgeOption 3: MCP Runtime
# stdio mode (Claude Desktop, VS Code, Cursor)
npx cesium-mcp-runtime
# HTTP mode (Dify, remote/cloud MCP clients)
npx cesium-mcp-runtime --transport http --port 3000Claude Desktop Configuration
{
"mcpServers": {
"cesium": {
"command": "npx",
"args": ["-y", "cesium-mcp-runtime"]
}
}
}