MCP Catalogs
Home

AzureMCP-demo vs everything

Side-by-side comparison to help you pick between these two MCP servers.

AzureMCP-demo
by AbhijithGanesh
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score2777
Official
Categories
AI / LLM ToolsCloud StorageDeveloper Tools
Developer ToolsAI / LLM ToolsOther
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.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

everything · Use cases

  • Testing MCP client implementations against all protocol features
  • Learning MCP protocol capabilities through a reference server
  • Validating client compatibility with different transport methods

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"]
    }
  }
}

everything · Install

NPX (recommended)

{
  "mcpServers": {
    "everything": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

On Windows, use cmd /c:

{
  "mcpServers": {
    "everything": {
      "command": "cmd",
      "args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
    }
  }
}

Docker

{
  "mcpServers": {
    "everything": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "mcp/everything"]
    }
  }
}

Global install

npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything
Comparison generated from public README + GitHub signals. Last updated automatically.