MCP Catalogs
Home

mcp-remote-macos-use vs everything

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

mcp-remote-macos-use
by baryhuang
everything
by modelcontextprotocol
Stars★ 482★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsProductivityOther
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit11 mo agothis month

mcp-remote-macos-use · Summary

MCP server enabling AI agents to control remote macOS systems without API keys

everything · Summary

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

mcp-remote-macos-use · Use cases

  • Automate social media management on Twitter and LinkedIn
  • Create video content using CapCut and other macOS applications
  • Automate recruitment processes by collecting and qualifying candidate information

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-remote-macos-use · Install

Installation

  1. Enable Screen Sharing on your macOS machine: [Apple Support Guide](https://support.apple.com/guide/remote-desktop/set-up-a-computer-running-vnc-software-apdbed09830/mac)
  1. Connect to your remote macOS: [Apple Connection Guide](https://support.apple.com/guide/mac-help/share-the-screen-of-another-mac-mh14066/mac)
  1. Install Docker Desktop for local Mac: [Docker Installation Guide](https://docs.docker.com/desktop/setup/install/mac-install/)
  1. Add this MCP server to Claude Desktop configuration:
{
  "mcpServers": {
    "remote-macos-use": {
      "command": "docker",
      "args": [
        "run",
        "-i",
        "-e",
        "MACOS_USERNAME=your_macos_username",
        "-e",
        "MACOS_PASSWORD=your_macos_password",
        "-e",
        "MACOS_HOST=your_macos_hostname_or_ip",
        "--rm",
        "buryhuang/mcp-remote-macos-use:latest"
      ]
    }
  }
}

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.