MCP Catalogs
Home

drawio2go vs filesystem

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

drawio2go
by Menghuan1918
filesystem
by modelcontextprotocol
Stars★ 199★ 85,748
30d uses
Score4677
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
File SystemDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last commit4 mo agothis month

drawio2go · Summary

DrawIO2Go is an AI-powered diagram editor with MCP server integration for canvas content version management.

filesystem · Summary

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

drawio2go · Use cases

  • Collaborative diagram creation with AI assistance
  • Version management for diagram changes
  • Integration with AI tools via MCP for canvas content operations

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

drawio2go · Install

Installation

Using Electron APP

Go to [Releases](https://github.com/Menghuan1918/drawio2go/releases) to download and install the latest version.

Deploy as Web Application

Requirements:

  • Node.js 22.x or higher
  • npm
# Clone the repository
git clone https://github.com/Menghuan1918/drawio2go.git
cd drawio2go

# Install dependencies
npm install

# Start development server
npm run dev

MCP Server Setup

The DrawIO2Go application provides MCP service functionality for canvas content version management. To use it with Claude Desktop:

  1. Add to your Claude Desktop config.json:
{
  "mcpServers": {
    "drawio2go": {
      "command": "path/to/drawio2go",
      "args": ["--mcp"]
    }
  }
}

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.