mcp-server-chart vs comfyui-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | comfyui-mcp-server by joenorton | |
|---|---|---|
| Stars | ★ 4,068 | ★ 313 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsMediaDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
comfyui-mcp-server · Summary
Lightweight Python MCP server for local ComfyUI that enables AI agents to generate and iteratively refine images, audio, and video.
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
comfyui-mcp-server · Use cases
- AI assistants creating website hero images and logos with precise control
- Content generation for social media platforms with iterative refinement
- Game asset development with consistent style variations
- Music generation from lyrics and tags
- Automated media generation for content creators
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"]
}
}
}comfyui-mcp-server · Install
Quick Installation
1) Clone and install dependencies:
git clone https://github.com/joenorton/comfyui-mcp-server.git
cd comfyui-mcp-server
pip install -r requirements.txt2) Start ComfyUI locally:
cd <ComfyUI_dir>
python main.py --port 81883) Run the MCP server:
python server.py4) Configure your AI client (e.g., Claude Desktop, Cursor) with:
{
"mcpServers": {
"comfyui-mcp-server": {
"type": "streamable-http",
"url": "http://127.0.0.1:9000/mcp"
}
}
}