mcp-server-chart vs PerformanceMonitor
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | PerformanceMonitor by erikdarlingdata | |
|---|---|---|
| Stars | ★ 4,068 | ★ 380 |
| 30d uses | 10,239 | — |
| Score | 84 | 53 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | MonitoringDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | C# |
| 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.
PerformanceMonitor · Summary
SQL Server performance monitoring tool with built-in MCP server for AI-powered analysis of wait stats and query performance.
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
PerformanceMonitor · Use cases
- AI-powered SQL Server performance analysis with Claude Code or Cursor
- Real-time monitoring of wait stats, query performance, and resource utilization
- Visualizing SQL query execution plans and identifying performance bottlenecks
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"]
}
}
}PerformanceMonitor · Install
Installation Options
- **Full Edition (Server-based)**:
- Download PerformanceMonitorInstaller.exe - Run with server name: PerformanceMonitorInstaller.exe YourServerName - For SQL Authentication: PerformanceMonitorInstaller.exe YourServerName sa YourPassword
- **Lite Edition (Desktop)**:
- Download PerformanceMonitorLite.exe - Run the executable and add server connections via the UI
Claude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"performance-monitor": {
"command": "PerformanceMonitorLite.exe",
"args": ["--mcp"]
}
}
}