azure-diagram-mcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
azure-diagram-mcp by dminkovski | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 25 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
azure-diagram-mcp · Summary
An MCP server that converts natural language descriptions into Azure architecture diagrams using Python's Diagrams library.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
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
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
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", } } } ``
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