MCP Catalogs
Home

MCPSafari vs everything

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

MCPSafari
by Epistates
everything
by modelcontextprotocol
Stars★ 23★ 85,748
30d uses
Score4577
Official
Categories
Browser AutomationDeveloper ToolsProductivity
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

MCPSafari · Summary

Native Safari MCP server providing 23 tools for AI agents to control Safari on macOS.

everything · Summary

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

MCPSafari · Use cases

  • Automating web interactions and data extraction from Safari
  • Testing web applications by simulating user interactions
  • Enhancing AI agents with browsing capabilities on macOS

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

MCPSafari · Install

Homebrew (recommended)

brew install --cask epistates/tap/mcp-safari

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-safari": {
      "command": "mcp-safari"
    }
  }
}

After installation, enable the extension in Safari > Settings > Extensions > MCPSafari Extension.

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.