MCP Catalogs
Home

mcp vs everything

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

mcp
by BrowserMCP
everything
by modelcontextprotocol
Stars★ 6,510★ 85,748
30d uses
Score5177
Official
Categories
Browser AutomationWeb ScrapingDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit13 mo agothis month

mcp · Summary

Browser MCP enables AI applications to control your browser locally for automation tasks.

everything · Summary

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

mcp · Use cases

  • Automating repetitive web tasks
  • Scraping data while avoiding detection
  • Controlling logged-in web applications via AI
  • Testing web applications with real browser context

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 · Install

Installation

  1. Install the Browser MCP Chrome extension from the Chrome Web Store
  2. Install the MCP server package:

``bash npm install -g @browsermcp/server ``

  1. Configure Claude Desktop:

``json { "mcpServers": { "browser-mcp": { "command": "npx", "args": ["@browsermcp/server"] } } } ``

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.