mcp-server-chart vs create-mcp-app
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | create-mcp-app by boguan | |
|---|---|---|
| Stars | ★ 4,068 | ★ 57 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | 13 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-app · Summary
CLI tool for scaffolding MCP server applications with TypeScript support and modern development tooling.
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-app · Use cases
- Quickly start new MCP server development with proper TypeScript setup
- Generate MCP client applications to connect to MCP servers
- Standardize team development with pre-configured tooling and best practices
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-app · Install
To create a new MCP server application:
npx create-mcp-server-app@latest my-mcp-serverTo create a new MCP client application:
npx create-mcp-client-app@latest my-mcp-clientFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"my-mcp-server": {
"command": "node",
"args": ["/path/to/your/server.js"]
}
}
}