AzureMCP-demo vs mcp-server-chart
Side-by-side comparison to help you pick between these two MCP servers.
AzureMCP-demo by AbhijithGanesh | mcp-server-chart by antvis | |
|---|---|---|
| Stars | ★ 0 | ★ 4,068 |
| 30d uses | — | 10,239 |
| Score | 27 | 84 |
| Official | — | — |
| Categories | AI / LLM ToolsCloud StorageDeveloper Tools | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 12 mo ago | this month |
AzureMCP-demo · Summary
A dual-language (Python/TypeScript) tutorial implementation of an MCP server for Azure services with clear setup instructions.
mcp-server-chart · Summary
A TypeScript MCP server for generating 26+ visualization charts using AntV, supporting multiple chart types and deployment options.
AzureMCP-demo · Use cases
- Learning how to implement an MCP server for Azure cloud services
- Creating integration between AI assistants and Azure resources
- Developing custom tools to interact with Azure API endpoints
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
AzureMCP-demo · Install
Installation
Prerequisites
- [Bun](https://bun.sh/) package manager installed
- Azure subscription
- Python 3.12+ (for Python implementation)
- Node.js/TypeScript environment (for TypeScript implementation)
Python Implementation
cd custom-mcp-server/python3
python -m venv .venv
source .venv/bin/activate
pip install -e .TypeScript Implementation
cd custom-mcp-server/typescript
bun installRunning the Server
./start-server.shClaude Desktop Configuration
Add this to your claude_desktop_config.json:
{
"mcpServers": {
"azure-mcp": {
"command": "python",
"args": ["/path/to/AzureMCP-demo/custom-mcp-server/python3/main.py"]
}
}
}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"]
}
}
}