drio
Open app

MCP Web Browser Server

Source

An advanced web browsing server for the Model Context Protocol (MCP) powered by Playwright, enabling headless browser interactions through a flexible, secure API.

Catalog onlyCatalog onlySTDIO

Overview

MCP Web Browser Server is an advanced web browsing server designed for the Model Context Protocol (MCP), utilizing Playwright to enable headless browser interactions through a flexible and secure API.

To use the MCP Web Browser Server, install the required dependencies, configure the server settings, and utilize the provided Python functions to navigate and interact with web pages programmatically.

  • Headless web browsing with SSL certificate validation bypass. - Full page content extraction, including dynamically loaded JavaScript. - Advanced web interaction tools such as text extraction, form input, and screenshot capture.
  1. Automating web scraping tasks.
  2. Testing web applications in a headless environment.
  3. Capturing screenshots for documentation or analysis.

Add to your AI client

Use these steps to connect MCP Web Browser Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "mcp-web-browser-random-robbie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-web-browser-random-robbie"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "mcp-web-browser-random-robbie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-web-browser-random-robbie"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-web-browser-random-robbie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-web-browser-random-robbie"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "mcp-web-browser-random-robbie": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-web-browser-random-robbie"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-web-browser-random-robbie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-web-browser-random-robbie"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-web-browser-random-robbie": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-web-browser-random-robbie"
      ]
    }
  }
}

FAQ

**What programming language is used?**

The server is built using Python and requires Python 3.10 or higher.

**Is it secure to use?**

Yes, it includes features like SSL certificate validation bypass and secure browser context management.

**Can I contribute to the project?**

Yes! Contributions are welcome, and you can submit a Pull Request on GitHub.