mcp-server-chart vs automcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | automcp by lirantal | |
|---|---|---|
| Stars | ★ 4,068 | ★ 5 |
| 30d uses | 10,239 | — |
| Score | 84 | 40 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
automcp · Summary
AutoMCP automatically detects your package.json dependencies and configures MCP servers for your coding agents.
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
automcp · Use cases
- Automatically setting up MCP servers for JavaScript/Node.js projects based on dependencies
- Maintaining consistent MCP configurations across multiple projects in a team
- Quickly experimenting with MCP servers for packages in a new project
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"]
}
}
}automcp · Install
Installation
Run with npx (no install required):
npx automcpOr add as a dev dependency:
npm add -D automcpUsage
# Basic usage
npx automcp
# Preview changes
npx automcp --dry-run
# Include devDependencies
npx automcp --include-dev
# Target specific agent
npx automcp --agent cursorConfiguration
AutoMCP automatically detects agent configuration files:
- Cursor:
.cursor/mcp.jsonin project directory - VS Code:
.vscode/mcp.jsonin project directory
The tool will add GitMCP servers to your existing configuration without overwriting existing entries.