MCP Catalogs
Home

drawio2go vs everything

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

drawio2go
by Menghuan1918
everything
by modelcontextprotocol
Stars★ 199★ 85,748
30d uses
Score4677
Official
Categories
AI / LLM ToolsProductivityDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit4 mo agothis month

drawio2go · Summary

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

everything · Summary

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

drawio2go · Use cases

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

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

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

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.