mcp-server-chart vs ProxmoxMCP-Plus
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | ProxmoxMCP-Plus by RekklesNA | |
|---|---|---|
| Stars | ★ 4,068 | ★ 191 |
| 30d uses | 10,239 | — |
| Score | 84 | 50 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Ops & InfraDeveloper ToolsAI / LLM Tools |
| 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.
ProxmoxMCP-Plus · Summary
MCP server enabling Proxmox VE VM and LXC control through MCP and OpenAPI interfaces.
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
ProxmoxMCP-Plus · Use cases
- Automating VM and container provisioning through LLM agents
- Managing Proxmox infrastructure using natural language commands
- Implementing backup and snapshot workflows via automation tools
- Executing container commands with policy controls through AI agents
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"]
}
}
}ProxmoxMCP-Plus · Install
Installation
Using PyPI
pip install proxmox-mcp-plus
proxmox-mcp-plusUsing Docker
docker run --rm -p 8811:8811 \
-e PROXMOX_API_KEY="$(openssl rand -hex 32)" \
-v "$(pwd)/proxmox-config/config.json:/app/proxmox-config/config.json:ro" \
ghcr.io/rekklesna/proxmoxmcp-plus:latestFor Claude Desktop
Add to Claude Desktop config:
{
"mcpServers": {
"proxmox-mcp-plus": {
"command": "python",
"args": ["/path/to/ProxmoxMCP-Plus/main.py"],
"env": {
"PROXMOX_MCP_CONFIG": "/path/to/ProxmoxMCP-Plus/proxmox-config/config.json"
}
}
}
}