MCP Catalogs
Home

mcp-browser-agent vs everything

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

mcp-browser-agent
by imprvhub
everything
by modelcontextprotocol
Stars★ 38★ 85,748
30d uses
Score4577
Official
Categories
Browser AutomationWeb ScrapingDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit3 mo agothis month

mcp-browser-agent · Summary

An MCP server providing Claude with autonomous browser automation capabilities including DOM manipulation, JavaScript execution, and API requests.

everything · Summary

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

mcp-browser-agent · Use cases

  • Automating web testing and QA processes through AI agents
  • Web scraping complex sites with dynamic content and JavaScript rendering
  • Automating repetitive browser workflows like form submissions and data extraction

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

Installation

  1. Clone the repository:
git clone https://github.com/imprvhub/mcp-browser-agent
cd mcp-browser-agent
  1. Install dependencies:
npm install
  1. Build the project:
npm run build
  1. Configure Claude Desktop:

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "browserAgent": {
      "command": "node",
      "args": ["ABSOLUTE_PATH_TO_DIRECTORY/mcp-browser-agent/dist/index.js", "--browser", "chrome"]
    }
  }
}

Replace ABSOLUTE_PATH_TO_DIRECTORY with the actual path to the project directory.

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.