MCP Catalogs
Home

safari-mcp vs everything

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

safari-mcp
by achiya-automation
everything
by modelcontextprotocol
Stars★ 63★ 85,748
30d uses
Score4977
Official
Categories
Browser AutomationWeb ScrapingDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

safari-mcp · Summary

Native Safari browser automation for AI agents with 80 tools via AppleScript, zero overhead, and lower CPU usage than Chrome DevTools.

everything · Summary

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

safari-mcp · Use cases

  • AI agents automating web tasks while maintaining logged-in sessions
  • Web scraping with lower resource usage and better anti-bot detection resistance
  • Automated testing of web applications with actual browser state

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

safari-mcp · Install

Installation

Quick install: npx safari-mcp

Global install: npm install -g safari-mcp

Configure Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

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

Restart Claude Desktop after saving.

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.