mcp-server-chart vs illustrator-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | illustrator-mcp-server by spencerhhubert | |
|---|---|---|
| Stars | ★ 4,068 | ★ 50 |
| 30d uses | 10,239 | — |
| Score | 84 | 35 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsMediaProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 17 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
illustrator-mcp-server · Summary
Adobe Illustrator MCP server allowing AI models to run JavaScript scripts directly in Illustrator.
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
illustrator-mcp-server · Use cases
- Automatically generating complex vector graphics designs
- Batch processing Illustrator files with AI-driven modifications
- Creating custom design automation workflows between AI and Illustrator
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"]
}
}
}illustrator-mcp-server · Install
- Clone the repository:
git clone https://github.com/spencerhhubert/illustrator-mcp-server.git - Install dependencies with uv:
uv sync - Configure Claude Desktop by adding the following to
~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"illustrator": {
"command": "uv",
"args": [
"--directory",
"/path/to/your/illustrator-mcp-server",
"run",
"illustrator"
]
}
}
}