mcp-server-chart vs prometheus-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | prometheus-mcp by idanfishman | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30d uses | 10,239 | — |
| Score | 84 | 43 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MonitoringDeveloper ToolsOps & Infra |
| Language | TypeScript | TypeScript |
| Last commit | this month | 3 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
prometheus-mcp · Summary
MCP server enabling AI agents to query Prometheus monitoring metrics through natural language commands.
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
prometheus-mcp · Use cases
- AI assistants monitoring system performance and alerting on anomalies
- DevOps teams analyzing metrics trends through natural language queries
- Automated reporting systems generating status updates based on Prometheus metrics
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"]
}
}
}prometheus-mcp · Install
Installation
Claude Desktop
- Download the latest
.dxtfile from [releases page](https://github.com/idanfishman/prometheus-mcp/releases) - Double-click to install automatically
- Configure Prometheus URL in extension settings
Or via Developer Settings:
{
"mcpServers": {
"prometheus": {
"command": "npx",
"args": ["prometheus-mcp@latest", "stdio"],
"env": {
"PROMETHEUS_URL": "http://localhost:9090"
}
}
}
}VS Code/Cursor/Windsurf
Add this configuration to your client settings:
{
"mcpServers": {
"prometheus": {
"command": "npx",
"args": ["prometheus-mcp@latest", "stdio"],
"env": {
"PROMETHEUS_URL": "http://localhost:9090"
}
}
}
}