mcp-server-chart vs wcgw
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | wcgw by rusiaaman | |
|---|---|---|
| Stars | ★ 4,068 | ★ 660 |
| 30d uses | 10,239 | — |
| Score | 84 | 54 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsFile SystemAI / LLM Tools |
| Language | TypeScript | Python |
| 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.
wcgw · Summary
An MCP server providing shell and code editing tools with interactive terminal access for AI 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
wcgw · Use cases
- AI-assisted software development with iterative code execution and debugging
- Automated file system operations and batch processing through AI commands
- Interactive shell access with the ability to resume and share task checkpoints
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"]
}
}
}wcgw · Install
Installation
**Mac and Linux**
- Install
uvusing homebrew:brew install uv - Create or update
claude_desktop_config.jsonin~/Library/Application Support/Claude/with:
{
"mcpServers": {
"wcgw": {
"command": "uvx",
"args": ["--python", "3.12", "wcgw@latest"]
}
}
}- Restart Claude Desktop
**Windows (WSL)**
- Install [uv](https://docs.astral.sh/uv/getting-started/installation/)
- Update
claude_desktop_config.jsonin%APPDATA%\Claude\with:
{
"mcpServers": {
"wcgw": {
"command": "wsl.exe",
"args": ["uvx", "--python", "3.12", "wcgw@latest"]
}
}
}