mcp-server-chart vs create-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | create-mcp by fefergrgrgrg | |
|---|---|---|
| Stars | ★ 4,068 | ★ 16 |
| 30d uses | 10,239 | — |
| Score | 84 | 36 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 12 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
create-mcp · Summary
CLI tool to create and deploy MCP servers to Cloudflare Workers using TypeScript functions with JSDoc comments.
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
create-mcp · Use cases
- Create custom MCP tools for Cursor agents without maintaining local server infrastructure
- Quickly prototype and deploy API-based MCP servers to Cloudflare Workers
- Convert existing API functionality into MCP tools using TypeScript functions
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"]
}
}
}create-mcp · Install
Installation
- Install Wrangler CLI and log in with your Cloudflare account:
``bash npm install -g wrangler wrangler login ``
- Create a new MCP server:
``bash bun create mcp # or with a specific name bun create mcp --name <server-name> ``
- Deploy the server:
``bash cd <server-name> bun run deploy ``
- The CLI will automatically add it to Claude Desktop and copy the command to your clipboard for use in Cursor.