mcp-server-chart vs PyWry
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | PyWry by deeleeramone | |
|---|---|---|
| Stars | ★ 4,068 | ★ 81 |
| 30d uses | 10,239 | — |
| Score | 84 | 46 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| 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.
PyWry · Summary
PyWry is a cross-platform rendering engine that provides MCP server tools for creating interactive widgets and dashboards.
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
PyWry · Use cases
- Create data visualization dashboards in AI workflows and share them as HTML artifacts
- Build interactive chat interfaces with AI agents using multiple LLM providers
- Generate responsive UI prototypes that can be deployed as desktop apps or web services
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"]
}
}
}PyWry · Install
Install PyWry with MCP support:
pip install 'pywry[mcp]'Start the MCP server:
pywry mcp --transport stdioFor Claude Desktop, add to config.json:
{
"mcpServers": {
"pywry": {
"command": "pywry",
"args": ["mcp", "--transport", "stdio"]
}
}
}