mcp-server-chart vs mcp-diagnostics-extension
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | mcp-diagnostics-extension by newbpydev | |
|---|---|---|
| Stars | ★ 4,068 | ★ 22 |
| 30d uses | 10,239 | — |
| Score | 84 | 42 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsMonitoring |
| Language | TypeScript | TypeScript |
| 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.
mcp-diagnostics-extension · Summary
VS Code extension that exposes diagnostic problems via MCP for AI agents to access in real-time.
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
mcp-diagnostics-extension · Use cases
- AI agents can access real-time TypeScript and ESLint errors to provide contextual debugging assistance
- Development teams can integrate diagnostics into their AI-powered workflows for faster issue resolution
- IDE extensions can leverage MCP to share diagnostic information across development tools
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"]
}
}
}mcp-diagnostics-extension · Install
Installation
From VS Code Marketplace
- Open VS Code
- Go to Extensions (Ctrl+Shift+X / Cmd+Shift+X)
- Search for "MCP Diagnostics Extension"
- Click Install
- Reload VS Code if prompted
From Source
git clone https://github.com/newbpydev/mcp-diagnostics-extension.git
cd mcp-diagnostics-extension
npm install
npm run compile
code --extensionDevelopmentPath=.Claude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"vscode-diagnostics": {
"command": "node",
"args": ["scripts/mcp-server.js"],
"cwd": "/path/to/mcp-diagnostics-extension",
"env": {
"NODE_ENV": "production"
}
}
}
}