MCP Catalogs
Home

everything vs sh-disney-mcp

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

everything
by modelcontextprotocol
sh-disney-mcp
by syyuan14
Stars★ 85,748★ 81
30d uses
Score7743
Official
Categories
Developer ToolsAI / LLM ToolsOther
OtherProductivity
LanguageTypeScriptTypeScript
Last committhis month7 mo ago

everything · Summary

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

sh-disney-mcp · Summary

An MCP server that provides real-time ticket pricing and availability for Shanghai Disneyland.

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

sh-disney-mcp · Use cases

  • Travel planning assistants for Disneyland visitors
  • Chatbots providing real-time ticket information
  • Personalized itinerary recommendations based on ticket availability

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

sh-disney-mcp · Install

Installation

  1. Install via npm:
npm install -g sh-disney-mcp
  1. Integrate with your MCP host:

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "sh-disney-mcp": {
      "command": "npx",
      "args": ["-y", "sh-disney-mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.