MCP Catalogs
Home

mcd-mcp-server vs filesystem

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

mcd-mcp-server
by M-China
filesystem
by modelcontextprotocol
Stars★ 96★ 85,748
30d uses
Score4777
Official
Categories
E-commerceAI / LLM ToolsProductivity
File SystemDeveloper ToolsProductivity
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.

filesystem · Summary

A feature-rich MCP server for filesystem operations with dynamic directory access control.

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

filesystem · Use cases

  • Enable AI models to read and write project files during development
  • Allow Claude or other MCP clients to browse and analyze codebases
  • Provide secure sandboxed access to specific directories for content generation

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

filesystem · Install

Installation

Using NPX

{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-filesystem",
        "/path/to/allowed/directory"
      ]
    }
  }
}

Using Docker

{
  "mcpServers": {
    "filesystem": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
        "mcp/filesystem",
        "/projects"
      ]
    }
  }
}

VS Code Extension

Click the installation buttons in the README to install directly in VS Code.

Comparison generated from public README + GitHub signals. Last updated automatically.