beta

Browser Automation MCP (Playwright)

MCP Servers

MCP server for browser automation using Playwright — navigate, click, fill forms, take screenshots.

1603/23/2026
json1 file
mcp-config.json672 B
# Browser MCP Server (Playwright)

## Installation
```bash
npx playwright install chromium
```

## Configuration (.mcp.json)
```json
{
  "mcpServers": {
    "browser": {
      "command": "npx",
      "args": ["-y", "@anthropic-ai/mcp-server-playwright"]
    }
  }
}
```

## Available Tools
- navigate — go to a URL
- click — click an element by selector
- fill — fill a form field
- screenshot — take a screenshot
- get_text — get text content
- evaluate — run JavaScript in the browser

## Use Cases
- Testing web applications
- Scraping data from websites
- Automating form submissions
- Visual regression testing
- Debugging CSS issues by taking screenshots