MCP Catalogs
Home

everything vs mindmap-mcp-server

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

everything
by modelcontextprotocol
mindmap-mcp-server
by YuChenSSR
Stars★ 85,748★ 231
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsProductivityDeveloper Tools
LanguageTypeScriptPython
Last committhis month12 mo ago

everything · Summary

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

mindmap-mcp-server · Summary

MCP server that converts Markdown content to interactive mindmaps with HTML or file output options.

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

mindmap-mcp-server · Use cases

  • Create visual mindmaps from structured Markdown content in AI conversations
  • Convert project plans and documentation into interactive visualizations
  • Save token costs by generating mindmap files rather than large HTML content

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

mindmap-mcp-server · Install

Installation

pip install mindmap-mcp-server

Or using uvx:

uvx mindmap-mcp-server

Or using Docker:

docker pull ychen94/mindmap-converter-mcp

Claude Desktop Configuration

{
  "mcpServers": {
    "mindmap": {
      "command": "uvx",
      "args": ["mindmap-mcp-server", "--return-type", "filePath"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.