puppeteer-mcp
1
总安装量
1
周安装量
#54612
全站排名
安装命令
npx skills add https://github.com/dokhacgiakhoa/antigravity-ide --skill puppeteer-mcp
Agent 安装分布
amp
1
opencode
1
kimi-cli
1
codex
1
github-copilot
1
antigravity
1
Skill 文档
Puppeteer MCP Skill
ð¯ Goal
Enable the AI Agent to control a headless browser for testing, scraping, and UI verification using the official Model Context Protocol standard.
ð ï¸ Tools
navigate
Navigate the browser to a specific URL.
- url: The URL to visit (string)
screenshot
Take a screenshot of the current page or a specific element.
- path: Path to save the screenshot (string)
- selector: CSS selector to capture (optional, default: full page)
click
Click an element on the page.
- selector: CSS selector of the element to click (string)
fill
Fill an input field.
- selector: CSS selector of the input (string)
- value: Value to type (string)
evaluate
Execute JavaScript in the page context.
- script: JavaScript code to run (string)
get_content
Get the HTML content of the page.
- selector: CSS selector to get content from (optional, default: body)
ð Usage Rules
- Headless: Creating a session spawns a headless browser by default.
- Selectors: Use stable CSS selectors (id, data-testid) where possible.
- Wait: Ensure standard Puppeteer
waitForlogic is considered if the page is dynamic (handled by the tool implicitly or explicitly).