Parallel Browser

v0.1.12Browser Automationstable

parallel-browser-mcp is an MCP server for parallel browser automation. It exposes a numeric session model over MCP so one client can create and control multiple browser sessions at the same time across multiple browser providers.

agentsaianchor-browserbrowserbrowser-automation
Share:
101
Stars
0
Downloads
0
Weekly
0/5

What is Parallel Browser?

Parallel Browser is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to parallel-browser-mcp is an mcp server for parallel browser automation. it exposes a numeric session model over mcp so one client can create and control multiple browser sessions at the same time acros...

parallel-browser-mcp is an MCP server for parallel browser automation. It exposes a numeric session model over MCP so one client can create and control multiple browser sessions at the same time across multiple browser providers.

This server falls under the Browser Automation category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • parallel-browser-mcp is an MCP server for parallel browser a

Use Cases

Concurrent browser sessions
Multi-provider browser support
Parallel automation
etairl

Maintainer

LicenseApache 2.0
Languagetypescript
Versionv0.1.12
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

NPM

npx -y parallel-browser-mcp

Manual Installation

npx -y parallel-browser-mcp

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Parallel Browser

parallel-browser-mcp is a TypeScript MCP server that enables a single AI client to create and control multiple independent browser sessions simultaneously across different providers including Playwright (local), Browserbase, Anchor Browser, and Cloudflare Browser Rendering. It uses a numeric session model — each call to start_session returns a session ID that scopes all subsequent navigation, click, form-fill, screenshot, and JavaScript evaluation operations — making it ideal for concurrent web automation tasks like multi-tab research, parallel form submissions, or comparing multiple sites at once.

Prerequisites

  • Node.js 18+ installed
  • An MCP-compatible client such as Claude Desktop or Cursor
  • For local Playwright sessions: no additional credentials needed (Playwright is bundled)
  • For Browserbase: BROWSERBASE_API_KEY and BROWSERBASE_PROJECT_ID from your Browserbase account
  • For Anchor Browser: ANCHOR_API_KEY from your Anchor account
1

Add to Claude Code via CLI

The fastest way to add parallel-browser-mcp. For local Playwright usage no environment variables are needed.

claude mcp add parallel-browser-mcp npx parallel-browser-mcp@latest
2

Configure Claude Desktop for local Playwright sessions

Add the server to claude_desktop_config.json. The BROWSER_MCP_CONFIG env var is a JSON string that sets the default provider and launch options.

{
  "mcpServers": {
    "parallel-browser-mcp": {
      "command": "npx",
      "args": ["parallel-browser-mcp@latest"],
      "env": {
        "BROWSER_MCP_CONFIG": "{\"defaultProvider\":\"playwright\",\"providers\":{\"playwright\":{\"launchOptions\":{\"headless\":true}}}}"
      }
    }
  }
}
3

Configure for Browserbase (cloud provider)

To use Browserbase for managed cloud browser sessions with stealth and session persistence, add the required credentials to the env block.

{
  "mcpServers": {
    "parallel-browser-mcp": {
      "command": "npx",
      "args": ["parallel-browser-mcp@latest"],
      "env": {
        "BROWSERBASE_API_KEY": "your_browserbase_api_key",
        "BROWSERBASE_PROJECT_ID": "your_project_id",
        "BROWSER_MCP_CONFIG": "{\"defaultProvider\":\"browserbase\"}"
      }
    }
  }
}
4

Start a browser session and navigate

The basic workflow: call start_session to get a numeric ID, then use that ID in all subsequent browser_* tool calls. Multiple sessions can run concurrently.

5

Close sessions when done

Always close browser sessions after use to free resources. Use close_session for individual sessions or close_all_sessions to clean up everything at once.

Parallel Browser Examples

Client configuration

Claude Desktop configuration for parallel-browser-mcp using local Playwright in headless mode.

{
  "mcpServers": {
    "parallel-browser-mcp": {
      "command": "npx",
      "args": ["parallel-browser-mcp@latest"],
      "env": {
        "BROWSER_MCP_CONFIG": "{\"defaultProvider\":\"playwright\",\"providers\":{\"playwright\":{\"launchOptions\":{\"headless\":true}}}}"
      }
    }
  }
}

Prompts to try

Example prompts that demonstrate parallel and multi-session browser automation.

- "Open three browser sessions simultaneously, navigate each to a different news site, and compare their top headlines"
- "Log into my account on example.com, take a screenshot of the dashboard, then close the session"
- "Fill out the contact form on https://example.com/contact with my name and email, then submit it"
- "Open sessions on five e-commerce sites and find the best price for a specific product across all of them"
- "Crawl the pagination of https://example.com/listings page by page and extract all product names"

Troubleshooting Parallel Browser

Playwright fails to launch with 'browser executable not found'

Run npx playwright install chromium to download the required browser binary. On Linux, you may also need system dependencies: npx playwright install-deps chromium.

Browserbase sessions fail with authentication errors

Verify BROWSERBASE_API_KEY and BROWSERBASE_PROJECT_ID are set correctly in the env block of your MCP config. These are different from your Browserbase login password — find them in your Browserbase project settings dashboard.

Multiple sessions slow down or crash with local Playwright

Each Playwright session spawns a full browser process. On machines with limited RAM, reduce concurrency by closing sessions promptly after use. Consider switching to Browserbase or Anchor Browser for cloud-managed sessions that don't consume local resources.

Frequently Asked Questions about Parallel Browser

What is Parallel Browser?

Parallel Browser is a Model Context Protocol (MCP) server that parallel-browser-mcp is an mcp server for parallel browser automation. it exposes a numeric session model over mcp so one client can create and control multiple browser sessions at the same time across multiple browser providers. It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Parallel Browser?

Install via npm with the command: npx -y parallel-browser-mcp. Then add the server configuration to your AI client's JSON config file (e.g., claude_desktop_config.json or .cursor/mcp.json).

Which AI clients work with Parallel Browser?

Parallel Browser works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Parallel Browser free to use?

Yes, Parallel Browser is open source and available under the Apache 2.0 license. You can use it freely in both personal and commercial projects.

Browse More Browser Automation MCP Servers

Explore all browser automation servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "parallel-browser": { "command": "npx", "args": ["-y", "parallel-browser-mcp"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Parallel Browser?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides