This server provides browser automation capabilities using Puppeteer, enabling LLMs to interact with web pages, take screenshots, and execute JavaScript in a real browser environment. It offers a variety of tools for navigating, capturing screenshots, clicking elements, and more through the Model Context Protocol (MCP).
The Docker implementation uses headless Chromium for browser automation:
{
"mcpServers": {
"puppeteer": {
"command": "docker",
"args": ["run", "-i", "--rm", "--init", "-e", "DOCKER_CONTAINER=true", "mcp/puppeteer"]
}
}
}
The NPX version will open a visible browser window:
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-puppeteer"]
}
}
}
Navigate to any URL in the browser:
puppeteer_navigate
url
(string)Example:
{
"tool": "puppeteer_navigate",
"parameters": {
"url": "https://example.com"
}
}
Capture screenshots of the entire page or specific elements:
puppeteer_screenshot
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:
{
"tool": "puppeteer_screenshot",
"parameters": {
"name": "homepage",
"width": 1024,
"height": 768
}
}
Click elements on the page:
puppeteer_click
selector
(string): CSS selector for element to clickExample:
{
"tool": "puppeteer_click",
"parameters": {
"selector": "#submit-button"
}
}
Hover over elements on the page:
puppeteer_hover
selector
(string): CSS selector for element to hoverExample:
{
"tool": "puppeteer_hover",
"parameters": {
"selector": ".dropdown-menu"
}
}
Fill out input fields:
puppeteer_fill
selector
(string): CSS selector for input fieldvalue
(string): Value to fillExample:
{
"tool": "puppeteer_fill",
"parameters": {
"selector": "#search-input",
"value": "search query"
}
}
Select an option in a dropdown menu:
puppeteer_select
selector
(string): CSS selector for select elementvalue
(string): Value to selectExample:
{
"tool": "puppeteer_select",
"parameters": {
"selector": "#country-select",
"value": "US"
}
}
Execute JavaScript in the browser console:
puppeteer_evaluate
script
(string): JavaScript code to executeExample:
{
"tool": "puppeteer_evaluate",
"parameters": {
"script": "document.querySelectorAll('.item').length"
}
}
The server provides access to two types of resources:
Access browser console output in text format:
console://logs
Example of accessing console logs:
GET console://logs
Access PNG images of captured screenshots:
screenshot://<name>
<name>
is the name specified during captureExample of accessing a screenshot:
GET screenshot://homepage
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.