mcp-server-chart vs unplugin-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | unplugin-mcp by situ2001 | |
|---|---|---|
| Stars | ★ 4,068 | ★ 31 |
| 30d uses | 10,239 | — |
| Score | 84 | 41 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
unplugin-mcp · Summary
A unified plugin for integrating MCP servers into JavaScript build tools like Webpack, Rollup, and Vite.
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
unplugin-mcp · Use cases
- Enable AI assistants to understand module dependencies and build configurations during development
- Allow AI to debug build errors and provide suggestions for fixing them
- Integrate AI directly into the build process to automatically optimize bundling or resolve dependencies
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"]
}
}
}unplugin-mcp · Install
# Install the plugin
pnpm add -D unplugin-mcp
# or install bundler-specific one
pnpm add -D rollup-plugin-mcpFor Claude Desktop, add to your claude_desktop_config.json:
{
"mcpServers": {
"rollup": {
"url": "http://localhost:14514/mcp/sse"
}
}
}