Showing 28 verified skills. 284 preview entries are hidden until we confirm a real source. Show preview skills · Why?
Control a browser from your AI editor - navigate, screenshot, interact
npx @anthropic/mcp-server-puppeteerBrowser control via MCP using Playwright: navigate pages, take screenshots, click elements, fill forms, and extract content.
This is the actual SKILL.md file that powers this skill. Copy it to install.
---
name: mcp-browser
description: |
MCP server for browser automation. Trigger when the user needs to interact
with web pages, take screenshots, fill forms, or scrape content via a browser.
Phrases: "browse", "screenshot", "scrape website", "fill form", "open page".
mcpServers:
browser:
command: npx
args:
- "@anthropic/mcp-server-puppeteer"
---
# Browser MCP
Playwright-powered browser automation through the Model Context Protocol.
Navigate pages, take screenshots, click elements, fill forms, and extract
content from any website.
## Configuration
Add to your Claude Code MCP config (`~/.claude/mcp.json`):
```json
{
"mcpServers": {
"browser": {
"command": "npx",
"args": ["@anthropic/mcp-server-puppeteer"]
}
}
}
```
## Example usage
- "Take a screenshot of example.com"
- "Fill out the contact form on my staging site"
- "Scrape the pricing table from competitor.com"
- "Click the sign-in button and enter my credentials"
## Available tools
- **navigate** - Go to a URL
- **screenshot** - Capture the current page or a specific element
- **click** - Click an element by selector or text
- **fill** - Type text into an input field
- **evaluate** - Run JavaScript in the page context
- **get_text** - Extract all visible text from the page
## Requirements
- Node.js 18+
- npx available in PATH
mkdir -p ~/.claude/skills/mcp-browser~/.claude/skills/mcp-browser/SKILL.mdResulting file structure:
~/.claude/
skills/
mcp-browser/
SKILL.md <-- skill definitionSkills are loaded automatically by Claude Code when you start a new session. The skill name and description in the frontmatter determine when Claude triggers it.
Recommended from shared domain, career, and tool overlap with Browser MCP
Create custom tool integrations that extend any AI assistant
Both used by Software Engineer
Read, extract data from, and generate PDF documents programmatically
Both used by Software Engineer, Researcher
Query databases, inspect schemas, and explore data from your AI editor
Both used by Software Engineer
Give your AI assistant safe, sandboxed access to your filesystem
Both used by Software Engineer
Inspect Redis keys, TTLs, and cache hit rates from your AI editor
Both used by Software Engineer
Query Sentry errors and analyze stack traces from your AI editor
Both used by Software Engineer
Browser MCP