mcp-server-chart vs penpot-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | penpot-mcp by montevive | |
|---|---|---|
| Stars | ★ 4,068 | ★ 228 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 7 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
penpot-mcp · Summary
Penpot MCP server integrates AI assistants like Claude with Penpot designs for automated design workflows and analysis.
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
penpot-mcp · Use cases
- Automate design reviews and feedback collection with AI
- Generate design system documentation and consistency checks
- Streamline design-to-code workflows with AI assistance
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"]
}
}
}penpot-mcp · Install
Installation
Prerequisites
- Python 3.12+
- Penpot account credentials
Install from PyPI
pip install penpot-mcpConfiguration
Create a .env file with your Penpot credentials:
PENPOT_API_URL=https://design.penpot.app/api
PENPOT_USERNAME=your_penpot_username
PENPOT_PASSWORD=your_penpot_password
PORT=5000
DEBUG=trueClaude Desktop Integration
Add to your Claude Desktop config file:
{
"mcpServers": {
"penpot": {
"command": "uvx",
"args": ["penpot-mcp"],
"env": {
"PENPOT_API_URL": "https://design.penpot.app/api",
"PENPOT_USERNAME": "your_penpot_username",
"PENPOT_PASSWORD": "your_penpot_password"
}
}
}
}