Puppeteer MCP Server
by Anthropic ยท โญ 1.8k stars ยท updated 3 months ago
Browser automation and web scraping with Puppeteer. Navigate pages, take screenshots, fill forms, extract content โ full browser control for AI agents.
83
Very Good
Quality Score Breakdown
maintenance83/100
community85/100
documentation82/100
compatibility82/100
Use Cases
- โbrowser automation
- โtake screenshots
- โfill forms
- โweb scraping
โก One-Click Install Configs
Copy the config below and paste it into your AI client's config file.
๐ค Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"puppeteer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"puppeteer": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-puppeteer"
]
}
}
}
}