The Puppeteer MCP Server provides a powerful interface for LLMs to interact with web browsers through the Model Context Protocol. It enables AI models to navigate websites, capture screenshots, interact with page elements, and execute JavaScript in a real browser environment. This server bridges the gap between language models and web automation, allowing for sophisticated web-based tasks.
The Puppeteer MCP Server enables AI models to control and interact with web browsers through a set of intuitive tools. Built on Puppeteer, this server allows language models to perform a wide range of browser automation tasks including navigation, element interaction, form filling, and JavaScript execution.
You can use the Puppeteer MCP Server in two ways:
The Docker implementation uses headless Chromium:
{
"mcpServers": {
"puppeteer": {
"command": "docker",
"args": ["run", "-i", "--rm", "--init", "-e", "DOCKER_CONTAINER=true", "mcp/puppeteer"]
}
}
}
To build the Docker image:
docker build -t mcp/puppeteer -f src/puppeteer/Dockerfile .
The NPX version will open a browser window:
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"]
}
}
}
Navigate to any URL in the browser.
Parameters:
url
(string): The URL to navigate toExample:
{
"url": "https://example.com"
}
Capture screenshots of the entire page or specific elements.
Parameters:
name
(string, required): Name for the screenshotselector
(string, optional): CSS selector for element to screenshotwidth
(number, optional, default: 800): Screenshot widthheight
(number, optional, default: 600): Screenshot heightExample:
{
"name": "homepage",
"selector": "#main-content",
"width": 1024,
"height": 768
}
Click elements on the page.
Parameters:
selector
(string): CSS selector for element to clickExample:
{
"selector": ".submit-button"
}
Hover over elements on the page.
Parameters:
selector
(string): CSS selector for element to hoverExample:
{
"selector": ".dropdown-menu"
}
Fill out input fields.
Parameters:
selector
(string): CSS selector for input fieldvalue
(string): Value to fillExample:
{
"selector": "#search-input",
"value": "search query"
}
Select an option from a dropdown menu.
Parameters:
selector
(string): CSS selector for element to selectvalue
(string): Value to selectExample:
{
"selector": "#country-select",
"value": "US"
}
Execute JavaScript in the browser console.
Parameters:
script
(string): JavaScript code to executeExample:
{
"script": "document.querySelectorAll('.item').length"
}
The server provides access to two types of resources:
Console Logs (console://logs
)
Screenshots (screenshot://<name>
)
This MCP server is licensed under the MIT License, allowing free use, modification, and distribution subject to the license terms.