MCP Catalogs
Home

browser-mcp-lite vs everything

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

browser-mcp-lite
by karolaapiarian589
everything
by modelcontextprotocol
Stars★ 0★ 85,748
30d uses
Score3077
Official
Categories
Browser AutomationWeb ScrapingDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageJavaScriptTypeScript
Last committhis monththis month

browser-mcp-lite · Summary

A lightweight MCP server for Chrome browser automation through extensions with secure token authentication.

everything · Summary

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

browser-mcp-lite · Use cases

  • Automating browser interactions for web testing workflows
  • Extracting structured data from web pages using accessibility trees
  • Enabling AI agents to interact with web applications through MCP

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

browser-mcp-lite · Install

Installation

  1. Download the latest release from the GitHub repository
  2. Extract the ZIP file if needed
  3. Install the Chrome extension from the provided folder
  4. Launch the Windows application
  5. Configure token authentication between the app and extension

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "browser-mcp-lite": {
      "command": "path/to/browser-mcp-lite.exe",
      "args": [],
      "env": {
        "TOKEN": "your-auth-token"
      }
    }
  }
}

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.