MCP Catalogs
Home

mcd-mcp-server vs everything

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

mcd-mcp-server
by M-China
everything
by modelcontextprotocol
Stars★ 96★ 85,748
30d uses
Score4777
Official
Categories
E-commerceAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScript
Last commit1 mo agothis month

mcd-mcp-server · Summary

McDonald's China MCP Server provides food ordering, delivery, nutrition info, and loyalty program integration via the Model Context Protocol.

everything · Summary

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

mcd-mcp-server · Use cases

  • AI assistant helping users place food orders through natural language
  • Automating McDonald's loyalty points management and coupon redemption
  • Providing nutritional information for menu items and meal planning
  • Integrating McDonald's services into enterprise workflow systems

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

mcd-mcp-server · Install

Installation

  1. Obtain an MCP Token from the McDonald's China console
  2. Add the following configuration to your MCP client:
{
  "mcpServers": {
    "mcd-mcp": {
      "type": "streamablehttp",
      "url": "https://mcp.mcd.cn",
      "headers": {
        "Authorization": "Bearer YOUR_MCP_TOKEN"
      }
    }
  }
}
  1. Enable the server in your MCP client

Configuration Examples

Cherry Studio

  • Open settings, navigate to MCP tab
  • Click "Add" and select "Import from JSON"
  • Paste the configuration and replace YOUR_MCP_TOKEN
  • Enable the server

Cursor

  • Open Settings → Tools & MCP
  • Click "Add Custom MCP"
  • Fill in the configuration in mcp.json
  • Save and verify the connection status

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.