MCP Catalogs
Home

azure-diagram-mcp vs filesystem

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

azure-diagram-mcp
by dminkovski
filesystem
by modelcontextprotocol
Stars★ 25★ 85,748
30d uses
Score4477
Official
Categories
Developer ToolsAI / LLM ToolsOps & Infra
File SystemDeveloper ToolsProductivity
LanguagePythonTypeScript
Last commit1 mo agothis month

azure-diagram-mcp · Summary

An MCP server that converts natural language descriptions into Azure architecture diagrams using Python's Diagrams library.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

azure-diagram-mcp · Install

Installation Steps

  1. Install Python 3.10+ and ensure it's added to your system's PATH
  2. Install GraphViz from https://graphviz.org/download/
  3. Clone the repository and install dependencies:

``bash pip install -r requirements.txt ``

  1. 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", } } } ``

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.