MCP Catalogs
Home

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 uses10,239
Score2784
Official
Categories
AI / LLM ToolsCloud StorageDeveloper Tools
AI / LLM ToolsDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit12 mo agothis 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 install

Running the Server

./start-server.sh

Claude 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-chart

For 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"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.