mcp-server-chart vs azure-diagram-mcp
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server-chart by antvis | azure-diagram-mcp by dminkovski | |
|---|---|---|
| Stars | ★ 4,068 | ★ 25 |
| 30d uses | 10,239 | — |
| Score | 84 | 44 |
| Official | — | — |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | Python |
| Last commit | this month | 1 mo ago |
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
azure-diagram-mcp · Summary
An MCP server that converts natural language descriptions into Azure architecture diagrams using Python's Diagrams library.
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
azure-diagram-mcp · Use cases
- Rapidly visualize Azure infrastructure designs during architecture discussions
- Create cloud architecture diagrams for technical documentation without specialized tools
- Generate diagrams quickly during client presentations or design sessions
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"]
}
}
}azure-diagram-mcp · Install
Installation Steps
- Install Python 3.10+ and ensure it's added to your system's PATH
- Install GraphViz from https://graphviz.org/download/
- Clone the repository and install dependencies:
``bash pip install -r requirements.txt ``
- Configure in your MCP client (e.g., VS Code GitHub Copilot):
``json { "mcpServers": { "Azure Diagram MCP Server": { "type": "stdio", "command": "python", "args": [ "-m", "azure_diagram_mcp_server.server" ], "cwd": "PATH_TO_YOUR_CLONED_REPO", } } } ``