MCP Catalogs
Home

opentabs vs stealth-browser-mcp

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

opentabs
by opentabs-dev
stealth-browser-mcp
by vibheksoni
Stars★ 579★ 643
30d uses
Score5354
Official
Categories
Browser AutomationDeveloper ToolsProductivity
Browser AutomationWeb ScrapingDeveloper Tools
LanguageTypeScriptPython
Last committhis monththis month

opentabs · Summary

Browser automation server that authenticates with web APIs through browser sessions, exposing 100+ plugins with ~2,000 tools.

stealth-browser-mcp · Summary

Stealth Browser MCP provides undetectable browser automation with antibypass capabilities for MCP-compatible AI agents.

opentabs · Use cases

  • Automating tasks across multiple web services without API keys
  • Building custom AI agents that interact with web applications
  • Creating workflows that integrate authenticated API calls

stealth-browser-mcp · Use cases

  • Automating web scraping on protected websites with antibot measures
  • Creating UI clones of websites through AI chat commands
  • Intercepting and modifying network traffic in real-time

opentabs · Install

# Install CLI globally
npm install -g @opentabs-dev/cli

# Start the server
opentabs start
  1. Go to chrome://extensions/ in Chrome (enable Developer mode)
  2. Load the extension from ~/.opentabs/extension (Load unpacked)

For Claude Desktop, add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "opentabs": {
      "command": "npx",
      "args": ["@opentabs-dev/cli", "mcp"]
    }
  }
}

stealth-browser-mcp · Install

# Clone and install
git clone https://github.com/vibheksoni/stealth-browser-mcp.git
cd stealth-browser-mcp
python -m venv venv

# Activate virtual environment
# Windows:
venv\Scripts\activate
# Mac/Linux:
source venv/bin/activate

pip install -r requirements.txt

**Claude Desktop configuration:**

{
  "mcpServers": {
    "stealth-browser-mcp": {
      "command": "/path/to/stealth-browser-mcp/venv/bin/python",
      "args": ["/path/to/stealth-browser-mcp/src/server.py"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.