MCP Catalogs
Home

mirroir-mcp vs everything

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

mirroir-mcp
by jfarcand
everything
by modelcontextprotocol
Stars★ 89★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsAI / LLM ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageSwiftTypeScript
Last committhis monththis month

mirroir-mcp · Summary

MCP server for controlling a real iPhone via macOS iPhone Mirroring with screen analysis and interaction capabilities.

everything · Summary

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

mirroir-mcp · Use cases

  • Automated UI testing of iOS applications through AI agents
  • Cross-platform automation between iOS and messaging apps
  • Content interaction and posting on iOS social media apps

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

mirroir-mcp · Install

Install via script: /bin/bash -c "$(curl -fsSL https://mirroir.dev/get-mirroir.sh)"

Or via npx: npx -y mirroir-mcp install

Or via Homebrew: brew tap jfarcand/tap && brew install mirroir-mcp

For Claude Desktop, add to ~/.claude/config.json:

{
  "mcpServers": {
    "mirroir": {
      "command": "npx",
      "args": ["-y", "mirroir-mcp"]
    }
  }
}

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.