Enables LLMs to interact with web pages by providing browser automation capabilities, including screenshot capture and JavaScript execution.
Enables LLMs to interact with web pages by providing browser automation capabilities, including screenshot capture and JavaScript execution. The puppeteer mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 5 defined tools rather than through you.
A Model Context Protocol server that provides browser automation capabilities using Playwright (Python's equivalent to Puppeteer). This server enables LLMs to interact with web pages, take screenshots, and execute JavaScript in a real browser environment.
This Python implementation provides a stable alternative to the TypeScript version, offering the same capabilities with improved error handling and logging. It uses Playwright, which is the Python equivalent to Puppeteer, providing robust browser automation capabilities.
Everything the assistant can do here goes through one of these:
puppeteer_navigate — Navigate to any URL in the browser. json { "name": "puppeteer_navigate", "arguments": { "url": "https://example.com", "timeout": 60000 // optionalpuppeteer_screenshot — Capture screenshots of the entire page or specific elements. json { "name": "puppeteer_screenshot", "arguments": { "name": "my_screenshot"puppeteer_click — Click elements on the page. json { "name": "puppeteer_click", "arguments": { "selector": ".button-class", "timeout": 30000 // optional, defaults topuppeteer_fill — Fill out input fields. json { "name": "puppeteer_fill", "arguments": { "selector": "#input-id", "value": "text to fill", "timeout": 30000 //puppeteer_evaluate — Execute JavaScript in the browser console. json { "name": "puppeteer_evaluate", "arguments": { "script": "document.title", "timeout": 30000 //Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.
Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Puppeteer's toolset — puppeteer_navigate, puppeteer_screenshot, puppeteer_click and 2 more — is a fair guide to whether it matches your workflow. It is maintained by twolven; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| puppeteer_navigate | Navigate to any URL in the browser. json { "name": "puppeteer_navigate", "arguments": { "url": "https://example.com", "timeout": 60000 // optional, defaults to 60000ms } } |
| puppeteer_screenshot | Capture screenshots of the entire page or specific elements. json { "name": "puppeteer_screenshot", "arguments": { "name": "my_screenshot", "selector": "#specific-element", // optional "width": 1280, // optional, default |
| puppeteer_click | Click elements on the page. json { "name": "puppeteer_click", "arguments": { "selector": ".button-class", "timeout": 30000 // optional, defaults to 30000ms } } |
| puppeteer_fill | Fill out input fields. json { "name": "puppeteer_fill", "arguments": { "selector": "#input-id", "value": "text to fill", "timeout": 30000 // optional, defaults to 30000ms } } |
| puppeteer_evaluate | Execute JavaScript in the browser console. json { "name": "puppeteer_evaluate", "arguments": { "script": "document.title", "timeout": 30000 // optional, defaults to 30000ms } } |
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.