Home/Servers/Puppeteer MCP Server

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"
        ]
      }
    }
  }
}
โ† Back to all servers