by withlinda
Puppeteer Real Browser offers stealth automation with anti-detection, proxy, and captcha solving for undetectable web sc
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.
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.
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.
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.
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
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
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
Share your MCP server with the developer community
Useful MCP listing: Puppeteer Real Browser is the kind of server we cite when onboarding engineers to host + tool permissions.
Puppeteer Real Browser has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Puppeteer Real Browser is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Puppeteer Real Browser reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Puppeteer Real Browser is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated Puppeteer Real Browser against two servers with overlapping tools; this profile had the clearer scope statement.
According to our notes, Puppeteer Real Browser benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
We wired Puppeteer Real Browser into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
According to our notes, Puppeteer Real Browser benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
I recommend Puppeteer Real Browser for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
showing 1-10 of 48
⚠️ UNDER MAINTENANCE - This project is still being actively developed. Some features may be incomplete or change without notice.
Provides AI assistants with powerful, detection-resistant browser automation capabilities built on ZFC Digital's puppeteer-real-browser package.
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.
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.
node --versionFor Windows:
%APPDATA%\Claude\claude_desktop_config.json{
"mcpServers": {
"puppeteer-real-browser": {
"command": "npx",
"args": ["puppeteer-real-browser-mcp-server@latest"]
}
}
}
For Mac:
Cmd+Shift+G~/Library/Application Support/Claude/claude_desktop_config.jsonFor Linux:
~/.config/Claude/claude_desktop_config.jsonWhy @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.
Close and reopen Claude Desktop completely.
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:
Once set up, you can ask Claude to:
headless: true) if you don't want to see the browser windowThe 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.
Windows:
C:\Program Files\Google\Chrome\Application\chrome.exeC:\Program Files (x86)\Google\Chrome\Application\chrome.exe%LOCALAPPDATA%\Google\Chrome\Application\chrome.exe%LOCALAPPDATA%\Google\Chrome SxS\Application\chrome.exeCHROME_PATH environment variablemacOS:
/Applications/Linux:
sudo apt-get install -y google-chrome-stable or sudo apt-get install -y chromium-browsersudo apt-get install -y xvfbNote 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:
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
# 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
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
npxcommand downloads and runs the package without permanently installing it. The@latestensures you always get the newest version with all bug fixes and improvements.
Claude Code CLI offers multiple convenient methods to add the puppeteer-real-browser MCP server. Choose the method that best fits your workflow:
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:
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
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
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"
}
}'
After adding the server:
Check MCP Server Status:
/mcp
This command in Claude Code shows all active MCP servers.
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:
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
Prerequisites
Time Estimate
20-40 minutes including configuration and testing
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
MCP server handles HTTP requests, HTML parsing, JavaScript rendering (if headless browser), and returns structured data to Claude.
Protocols
Compatibility
✓ 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.