MCP Catalogs
Home

mcp-mermaid vs everything

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

mcp-mermaid
by hustcc
everything
by modelcontextprotocol
Stars★ 555★ 85,748
30d uses
Score5177
Official
Categories
ProductivityDeveloper ToolsAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis monththis month

mcp-mermaid · Summary

An MCP server that generates Mermaid diagrams and charts with AI dynamically.

everything · Summary

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

mcp-mermaid · Use cases

  • Generate documentation diagrams for technical articles and wikis
  • Create process flowcharts for business documentation and presentations
  • Produce architectural diagrams for software development documentation

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

mcp-mermaid · Install

Installation

Desktop App Configuration

Add the following MCP server configuration to your Desktop App (Claude, VSCode, Cline, Cherry Studio, etc.):

{
  "mcpServers": {
    "mcp-mermaid": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-mermaid"
      ]
    }
  }
}

Global Installation

npm install -g mcp-mermaid

Docker Usage

docker pull susuperli/mcp-mermaid:latest
docker run -p 3033:3033 susuperli/mcp-mermaid:latest --transport sse

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.