browser-automationsearch-web

Puppeteer Real Browser

withlinda

by withlinda

Puppeteer Real Browser offers stealth automation with anti-detection, proxy, and captcha solving for undetectable web sc

Provides stealth browser automation using puppeteer-real-browser with anti-detection features, human-like interactions, proxy support, and captcha solving for web scraping, testing, and form automation that bypasses bot detection mechanisms.

github stars

17

0 commentsdiscussion

Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.

Anti-detection stealth featuresBuilt-in captcha solvingZero setup with npx

best for

  • / Web scraping protected sites
  • / Automated testing that needs to avoid detection
  • / Form automation on security-conscious websites
  • / Data extraction from bot-protected services

capabilities

  • / Control real Chrome browsers with stealth features
  • / Bypass bot detection mechanisms
  • / Solve captchas automatically
  • / Fill forms with human-like interactions
  • / Scrape websites with proxy support
  • / Take screenshots and extract content

what it does

Provides stealth browser automation with anti-detection features, human-like interactions, proxy support, and captcha solving for web scraping and form automation that bypasses bot detection.

about

Puppeteer Real Browser is a community-built MCP server published by withlinda that provides AI assistants with tools and capabilities via the Model Context Protocol. Puppeteer Real Browser offers stealth automation with anti-detection, proxy, and captcha solving for undetectable web sc It is categorized under browser automation, search web.

how to install

You can install Puppeteer Real Browser in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

Puppeteer Real Browser is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

readme

⚠️ UNDER MAINTENANCE - This project is still being actively developed. Some features may be incomplete or change without notice.

Puppeteer Real Browser MCP Server

Provides AI assistants with powerful, detection-resistant browser automation capabilities built on ZFC Digital's puppeteer-real-browser package.

License: MIT

Table of Contents

  1. Quick Start for Beginners
  2. Introduction
  3. Features
  4. Prerequisites
  5. Installation
  6. Usage
  7. Available Tools
  8. Advanced Features
  9. Configuration
  10. Troubleshooting
  11. Development
  12. Testing
  13. Contributing
  14. License

Quick Start for Beginners

What is this?

This is an MCP (Model Context Protocol) server that lets AI assistants like Claude control a real web browser. Think of it as giving Claude "hands" to interact with websites - it can click buttons, fill forms, extract content, and much more, all while avoiding bot detection.

Important: You DON'T Need to Install This Package!

If you're just using this MCP server (not developing it), you don't need to run npm install. The npx command in the configuration will automatically download and run the latest version for you. Installation is only required for development purposes.

Step-by-Step Setup

1. Install Node.js (Required)

  • Go to nodejs.org
  • Download and install Node.js (version 18 or higher)
  • Verify installation by opening terminal/command prompt and typing: node --version

2. Configure Claude Desktop

For Windows:

  1. Open File Explorer and navigate to: %APPDATA%\Claude\
  2. Open (or create) claude_desktop_config.json
  3. Add this configuration:
{
  "mcpServers": {
    "puppeteer-real-browser": {
      "command": "npx",
      "args": ["puppeteer-real-browser-mcp-server@latest"]
    }
  }
}

For Mac:

  1. Open Finder and press Cmd+Shift+G
  2. Go to: ~/Library/Application Support/Claude/
  3. Open (or create) claude_desktop_config.json
  4. Add the same configuration as above

For Linux:

  1. Navigate to: ~/.config/Claude/
  2. Open (or create) claude_desktop_config.json
  3. Add the same configuration as above

Why @latest? The @latest tag ensures you always get the most recent version with bug fixes and improvements. The npx command automatically downloads and runs it without installing anything permanently on your system.

3. Restart Claude Desktop

Close and reopen Claude Desktop completely.

4. Test It Works

In Claude Desktop, try saying:

"Initialize a browser and navigate to google.com, then get the page content"

If everything is working, Claude should be able to:

  • Start a browser
  • Navigate to Google
  • Extract and show you the page content

What Can You Do With It?

Once set up, you can ask Claude to:

  • Browse websites: "Go to amazon.com and search for laptops"
  • Fill forms: "Fill out this contact form with my details"
  • Extract data: "Get all the product prices from this page"
  • Automate tasks: "Log into my account and download my invoice"
  • Solve captchas: "Handle any captchas that appear"

Safety Notes

  • Claude will show you what it's doing - you can see the browser window
  • Always review what Claude does before approving sensitive actions
  • Use headless mode (headless: true) if you don't want to see the browser window
  • Be respectful of websites' terms of service

Introduction

The Puppeteer Real Browser MCP Server acts as a bridge between AI assistants and browser automation. It leverages puppeteer-real-browser to provide stealth browsing capabilities that can bypass common bot detection mechanisms.

This server implements the Model Context Protocol (MCP), allowing AI assistants to control a real browser, extract content, and more.

Features

  • Stealth by default: All browser instances use anti-detection features
  • Enhanced Windows support: Comprehensive Chrome detection and ECONNREFUSED error fixes (v1.3.0)
  • Smart Chrome detection: Registry-based detection + 15+ installation paths (Windows)
  • Connection resilience: Automatic localhost/127.0.0.1 fallback with port management
  • Multiple retry strategies: 5 different connection approaches with progressive fallback
  • Advanced configuration: Full support for all puppeteer-real-browser options
  • Dynamic selector discovery: Intelligent element finding without hardcoded selectors
  • Random scrolling: Tools for natural scrolling to avoid detection
  • Comprehensive toolset: 11 tools covering all browser automation needs
  • Proxy support: Built-in proxy configuration for enhanced privacy
  • Captcha handling: Support for solving reCAPTCHA, hCaptcha, and Turnstile
  • Robust error handling: Advanced error recovery with circuit breaker pattern
  • Stack overflow protection: Comprehensive protection against infinite recursion
  • Timeout controls: Automatic timeout mechanisms prevent hanging operations
  • Platform optimization: Windows-specific flags and longer timeouts for better compatibility

Prerequisites

  • Node.js >= 18.0.0
  • npm or yarn
  • Google Chrome or Chromium browser installed
  • Basic understanding of TypeScript/JavaScript (for development)

Platform-Specific Requirements

Windows:

  • Google Chrome installation (automatic detection in v1.3.0+ includes):
    • Standard installations: C:\Program Files\Google\Chrome\Application\chrome.exe
    • 32-bit installations: C:\Program Files (x86)\Google\Chrome\Application\chrome.exe
    • User installations: %LOCALAPPDATA%\Google\Chrome\Application\chrome.exe
    • Chrome Canary: %LOCALAPPDATA%\Google\Chrome SxS\Application\chrome.exe
    • Portable installations and Registry-detected paths
    • Manual path specification: Use CHROME_PATH environment variable

macOS:

  • Google Chrome or Chromium must be installed in /Applications/

Linux:

  • Install Chrome/Chromium: sudo apt-get install -y google-chrome-stable or sudo apt-get install -y chromium-browser
  • Install xvfb for headless operation: sudo apt-get install -y xvfb

Installation for Developers

Note for Claude Desktop Users: You don't need to install anything! The npx command in your configuration automatically handles everything. Skip to the Usage section.

This section is for developers who want to:

  • Contribute to the project
  • Run the server locally for development
  • Create custom modifications

Global Installation (For Command Line Usage)

If you want to run the server directly from the command line without using npx:

npm install -g puppeteer-real-browser-mcp-server@latest

After global installation, you can run:

puppeteer-real-browser-mcp-server

Development Setup (For Contributors)

# Clone the repository
git clone https://github.com/withLinda/puppeteer-real-browser-mcp-server.git
cd puppeteer-real-browser-mcp-server

# Install dependencies
npm install

# Build the project
npm run build

# Run in development mode
npm run dev

Usage

With Claude Desktop

The configuration below uses npx to automatically download and run the latest version. No installation required!

{
  "mcpServers": {
    "puppeteer-real-browser": {
      "command": "npx",
      "args": ["puppeteer-real-browser-mcp-server@latest"]
    }
  }
}

What does npx do? The npx command downloads and runs the package without permanently installing it. The @latest ensures you always get the newest version with all bug fixes and improvements.

With Claude Code CLI

Claude Code CLI offers multiple convenient methods to add the puppeteer-real-browser MCP server. Choose the method that best fits your workflow:

Method 1: Quick Setup (Recommended)

The fastest way to get started is using the claude mcp add command:

claude mcp add puppeteer-real-browser -- npx puppeteer-real-browser-mcp-server@latest

This command:

  • Adds the server to your local scope (available only to you in current project)
  • Uses npx to automatically download and run the latest version
  • No installation required - everything is handled automatically

Method 2: Add with Environment Variables

If you need to configure proxy settings or custom Chrome paths:

claude mcp add puppeteer-real-browser \
  -e CHROME_PATH="/path/to/chrome" \
  -e PROXY_URL="http://proxy:8080" \
  -- npx puppeteer-real-browser-mcp-server@latest

Method 3: Scoped Configuration

For User-Wide Access (Available Across All Projects):

claude mcp add puppeteer-real-browser -s user -- npx puppeteer-real-browser-mcp-server@latest

For Project-Wide Access (Shared with Team via .mcp.json):

claude mcp add puppeteer-real-browser -s project -- npx puppeteer-real-browser-mcp-server@latest

Method 4: JSON Configuration

For advanced users who want precise control:

claude mcp add-json puppeteer-real-browser '{
  "type": "stdio",
  "command": "npx",
  "args": ["puppeteer-real-browser-mcp-server@latest"],
  "env": {
    "CHROME_PATH": "/path/to/chrome",
    "PROXY_URL": "http://proxy:8080"
  }
}'

Verification and Testing

After adding the server:

  1. Check MCP Server Status:

    /mcp
    

    This command in Claude Code shows all active MCP servers.

  2. Test the Server: In Claude Code, try:

    "Initialize a browser and navigate to google.com, then get the page content"

    If working correctly, you should see:


FAQ

What is the Puppeteer Real Browser MCP server?
Puppeteer Real Browser is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Puppeteer Real Browser?
This profile displays 48 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.8 out of 5—verify behavior in your own environment before production use.

Use Cases

Web Research & Information Gathering

Fetch and extract information from websites automatically

Example

Research competitor pricing, scrape product reviews, monitor news mentions

Automate 5-10 hours/week of manual web research

Content Monitoring & Alerts

Track website changes, new content, price updates

Example

Monitor competitor blog for new posts, track stock availability, watch for pricing changes

Stay informed without manual checking, never miss important updates

Data Extraction & Aggregation

Extract structured data from multiple websites

Example

Compile product listings from 10 e-commerce sites, aggregate job postings, collect real estate data

Build datasets 100x faster than manual copying

API-less Integration

Interact with services that don't offer APIs

Example

Check form submissions, validate website functionality, test user flows

Automate interactions with any website, even without API

Implementation Guide

Prerequisites

  • Claude Desktop or Cursor with MCP support
  • Understanding of web scraping ethics and robots.txt
  • Rate limiting awareness to avoid overwhelming target sites
  • Knowledge of legal restrictions on data collection

Time Estimate

20-40 minutes including configuration and testing

Installation Steps

  1. 1.Install web automation MCP server via npm or pip
  2. 2.Configure allowed domains and rate limits in MCP config
  3. 3.Test with simple fetch: 'Get content from example.com'
  4. 4.Progress to extraction: 'Extract all product prices from this page'
  5. 5.Set up monitoring: 'Check this URL daily for changes'
  6. 6.Parse structured data: 'Create CSV from this table'
  7. 7.Respect robots.txt and rate limits always

Troubleshooting

  • 403 Forbidden: Website blocks bots—respect their wishes, use official API instead
  • Rate limit errors: Slow down requests, add delays between fetches
  • Stale data: Target site changed HTML structure—update selectors
  • Timeout errors: Site is slow or blocking—increase timeout, try different user agent
  • JavaScript-rendered content: Use headless browser MCP servers for dynamic sites

Best Practices

✓ Do

  • +Check robots.txt and respect crawl rules
  • +Rate limit requests: 1-2 requests/second maximum
  • +Use official APIs when available instead of scraping
  • +Identify your bot with descriptive user agent
  • +Cache results to minimize repeated requests
  • +Handle errors gracefully with retries and fallbacks
  • +Validate extracted data for accuracy

✗ Don't

  • Don't scrape sites that explicitly forbid it (robots.txt, ToS)
  • Don't overwhelm servers with rapid requests—use rate limiting
  • Don't scrape personal data without consent and legal basis
  • Don't ignore copyright on extracted content
  • Don't assume HTML structure is stable—handle changes
  • Don't use scraped data for commercial purposes without permission

💡 Pro Tips

  • Use CSS selectors or XPath for robust data extraction
  • Set up monitoring alerts for extraction failures (structure changed)
  • Implement exponential backoff for retries on failures
  • Store raw HTML for reprocessing if extraction logic changes
  • Combine with data analysis tools for insights from extracted data
  • Consider using official APIs or RSS feeds as more stable alternatives

Technical Details

Architecture

MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.

Protocols

  • HTTP/HTTPS
  • WebSocket (for real-time sites)
  • Puppeteer/Playwright (for JavaScript sites)

Compatibility

  • Static HTML sites
  • JavaScript-rendered SPAs (with headless browser)
  • REST APIs
  • GraphQL endpoints

When to Use This

✓ Use When

Use for research automation, content monitoring, data aggregation from multiple sources, and when official APIs don't exist. Best for read-only information gathering.

✗ Avoid When

Avoid for sites with APIs (use API instead), sites that explicitly forbid scraping, when data is copyrighted, or for login-required content without proper authorization.

Integration

  • Scheduled monitoring with change detection
  • Multi-source data aggregation pipelines
  • Fallback to web scraping when API rate limits hit
  • Headless browser for JavaScript-heavy sites

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.

List & Promote Your MCP Server

Share your MCP server with the developer community

GET_STARTED →
MCP server reviews

Ratings

4.848 reviews
  • Dhruvi Jain· Dec 28, 2024

    Useful MCP listing: Puppeteer Real Browser is the kind of server we cite when onboarding engineers to host + tool permissions.

  • Noah Okafor· Dec 20, 2024

    Puppeteer Real Browser has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Arjun Martinez· Dec 4, 2024

    Puppeteer Real Browser is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.

  • Rahul Santra· Nov 27, 2024

    Puppeteer Real Browser reduced integration guesswork — categories and install configs on the listing matched the upstream repo.

  • Arya Jain· Nov 23, 2024

    Puppeteer Real Browser is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Oshnikdeep· Nov 19, 2024

    We evaluated Puppeteer Real Browser against two servers with overlapping tools; this profile had the clearer scope statement.

  • Harper Srinivasan· Nov 11, 2024

    According to our notes, Puppeteer Real Browser benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Pratham Ware· Oct 18, 2024

    We wired Puppeteer Real Browser into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.

  • Arjun Smith· Oct 14, 2024

    According to our notes, Puppeteer Real Browser benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Ganesh Mohane· Oct 10, 2024

    I recommend Puppeteer Real Browser for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

showing 1-10 of 48

1 / 5