mcp-server-chart vs pyxel-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | pyxel-mcp by kitao | |
|---|---|---|
| Stars | ★ 4,068 | ★ 17 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsMedia |
| 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.
pyxel-mcp · Summary
MCP server for AI-assisted retro game development with Pyxel, offering tools to run, capture, and analyze games.
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
pyxel-mcp · Use cases
- AI-assisted retro game development with automated testing and iteration
- Automated sprite and animation analysis for game design optimization
- Visual debugging of game states and pixel-level differences
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"]
}
}
}pyxel-mcp · Install
Installation
- Install the package:
pip install pyxel-mcp- Register
pyxel-mcpas an MCP server in your AI agent. For Claude Code, add to your project's.mcp.json:
{
"mcpServers": {
"pyxel": {
"type": "stdio",
"command": "pyxel-mcp"
}
}
}