mcp-server-chart vs imagesorcery-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | imagesorcery-mcp by sunriseapps | |
|---|---|---|
| Stars | ★ 4,068 | ★ 311 |
| 30d uses | 10,239 | — |
| Score | 84 | 47 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsMediaDeveloper Tools |
| Language | TypeScript | Python |
| Last commit | this month | 8 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
imagesorcery-mcp · Summary
ImageSorcery MCP provides powerful locally-run image processing tools for AI assistants.
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
imagesorcery-mcp · Use cases
- Automatically categorize and organize images by content (e.g., find all pet photos in a folder)
- Edit images by adding text, watermarks, or removing backgrounds without external software
- Extract information from images using OCR and object detection for document processing
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"]
}
}
}imagesorcery-mcp · Install
Installation
- **Install pipx (if not already installed):**
```bash # On macOS with Homebrew: brew install pipx
# On Ubuntu/Debian: sudo apt update && sudo apt install pipx ```
- **Install ImageSorcery MCP with pipx:**
``bash pipx install imagesorcery-mcp ``
- **Run the post-installation script:**
``bash imagesorcery-mcp --post-install ``
- **Configure in Claude Desktop:**
Add to your claude_desktop_config.json: ``json { "mcpServers": { "imagesorcery": { "command": "imagesorcery-mcp", "args": [] } } } ``