mcp-server-chart vs zabbix-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | zabbix-mcp-server by initMAX | |
|---|---|---|
| Stars | ★ 4,068 | ★ 98 |
| 30d uses | 10,239 | — |
| Score | 84 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MonitoringDeveloper ToolsOps & Infra |
| 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.
zabbix-mcp-server · Summary
Complete Zabbix API server exposing 237 tools for monitoring and management via MCP protocol.
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
zabbix-mcp-server · Use cases
- Automated Zabbix monitoring through AI assistants
- Generating PDF reports for Zabbix infrastructure
- Performing bulk operations on Zabbix hosts and templates
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"]
}
}
}zabbix-mcp-server · Install
Installation
git clone https://github.com/initMAX/zabbix-mcp-server.git
cd zabbix-mcp-server
sudo ./deploy/install.sh
sudo nano /etc/zabbix-mcp/config.toml # fill in your Zabbix URL + API token
sudo systemctl start zabbix-mcp-server
sudo systemctl enable zabbix-mcp-serverClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"zabbix": {
"command": "python",
"args": ["-m", "zabbix_mcp_server"],
"env": {
"ZABBIX_MCP_CONFIG": "/etc/zabbix-mcp/config.toml"
}
}
}
}