MCP Puppeteer-Extra provides enhanced browser automation capabilities using Puppeteer-Extra with Stealth Plugin, enabling LLMs to interact with web pages while avoiding detection as automation. Built by Gpaul (Faldin), it offers a suite of tools for navigating websites, capturing screenshots, interacting with elements (click, fill, select, hover), and executing JavaScript in the browser console. The implementation is containerized with Docker for easy deployment and includes resource endpoints for accessing screenshots and console logs, making it particularly valuable for web scraping, testing, and automation workflows that require human-like browser interactions.
No reviews yet. Be the first to review!
Sign in to join the conversation
Navigate to any URL in the browser. Input: url (string)
Capture screenshots of the entire page or specific elements. Inputs: name (string, required), selector (string, optional), width (number, optional, default: 800), height (number, optional, default: 600)
Click elements on the page. Input: selector (string): CSS selector for element to click
Hover elements on the page. Input: selector (string): CSS selector for element to hover
Fill out input fields. Inputs: selector (string): CSS selector for input field, value (string): Value to fill
Select an element with SELECT tag. Inputs: selector (string): CSS selector for element to select, value (string): Value to select
Execute JavaScript in the browser console. Input: script (string): JavaScript code to execute