Imported from reason-machines/mcp-skills (
skills/playwright-mcp-server/SKILL.md). Install upstream withnpx skills add reason-machines/mcp-skills --skill playwright-mcp-server. Copyright stays with the author.
Playwright MCP Server
Skill by ara.so — MCP Skills collection.
The Playwright MCP server provides browser automation capabilities through the Model Context Protocol. It enables LLMs to interact with web pages using Playwright's accessibility tree instead of screenshots, making it fast, lightweight, and deterministic.
What It Does
- Structured interaction: Uses accessibility snapshots instead of vision models
- Browser automation: Navigate, click, fill forms, extract data from web pages
- Multi-browser support: Chromium, Firefox, and WebKit
- LLM-optimized: Returns structured data that's easy for language models to parse
Installation
Add to your MCP client configuration:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": ["@playwright/mcp@latest"]
}
}
}
Configuration Options
Configure via args in your MCP config:
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest",
"--allowed-hosts", "example.com,*.trusted-domain.com",
"--browser", "chromium",
"--headless", "false"
]
}
}
}
Common options:
--allowed-hosts <hosts...>: Comma-separated hosts (or*to disable check). Env:PLAYWRIGHT_MCP_ALLOWED_HOSTS--browser <browser>: Choosechromium,firefox, orwebkit--headless <true|false>: Run browser in headless mode--timeout <ms>: Default timeout for operations
Available Tools
The MCP server exposes these tools to LLM agents:
1. playwright_navigate
Navigate to a URL and get accessibility snapshot.
Parameters:
url(string, required): URL to navigate to
Example usage:
// Agent will call this tool
{
"url": "https://example.com"
}
Returns: Accessibility tree snapshot of the page
2. playwright_click
Click an element identified by its accessibility role and name.
Parameters:
selector(string, required): Element selector (role, text, or CSS)button(string, optional):left,right, ormiddle(default:left)
Example usage:
{
"selector": "button[name='Submit']",
"button": "left"
}
3. playwright_fill
Fill an input field with text.
Parameters:
selector(string, required): Input field selectorvalue(string, required): Text to fill
Example usage:
{
"selector": "input[name='email']",
"value": "user@example.com"
}
4. playwright_screenshot
Take a screenshot of the page or element.
Parameters:
selector(string, optional): Element to screenshot (defaults to full page)path(string, optional): File path to save screenshot
Example usage:
{
"selector": "div.main-content",
"path": "./screenshots/content.png"
}
5. playwright_evaluate
Execute JavaScript in the page context.
Parameters:
expression(string, required): JavaScript to execute
Example usage:
{
"expression": "document.title"
}
6. playwright_snapshot
Get current accessibility snapshot without navigation.
Example usage:
{}
Common Patterns
Form Automation
// Navigate to login page
await playwright_navigate({ url: "https://app.example.com/login" });
// Fill credentials
await playwright_fill({
selector: "input[name='username']",
value: "user@example.com"
});
await playwright_fill({
selector: "input[type='password']",
value: process.env.USER_PASSWORD // Use env vars for secrets
});
// Submit form
await playwright_click({
selector: "button[type='submit']"
});
// Verify login
const snapshot = await playwright_snapshot({});
// Parse snapshot to confirm successful login
Data Extraction
// Navigate to data page
await playwright_navigate({ url: "https://example.com/products" });
// Extract product information
const products = await playwright_evaluate({
expression: `
Array.from(document.querySelectorAll('.product')).map(p => ({
name: p.querySelector('.name')?.textContent,
price: p.querySelector('.price')?.textContent
}))
`
});
Multi-Step Workflow
// Search flow
await playwright_navigate({ url: "https://example.com" });
await playwright_fill({
selector: "input[placeholder='Search']",
value: "playwright automation"
});
await playwright_click({
selector: "button[aria-label='Search']"
});
// Wait for results by getting snapshot
const results = await playwright_snapshot({});
// Click first result
await playwright_click({
selector: "a.result-item:first-child"
});
// Capture final page
await playwright_screenshot({
path: "./evidence/result-page.png"
});
Testing Accessibility
// Navigate to page under test
await playwright_navigate({ url: "https://myapp.com/dashboard" });
// Get accessibility tree
const snapshot = await playwright_snapshot({});
// The snapshot will show:
// - Missing ARIA labels
// - Elements without proper roles
// - Navigation structure
// Parse snapshot to validate accessibility
Accessibility Selectors
Playwright MCP uses accessible selectors. Prefer:
// Good: Role-based selectors
"button[name='Submit']"
"link[name='Documentation']"
"textbox[name='Email']"
// Good: ARIA attributes
"[aria-label='Close dialog']"
"[role='navigation']"
// Okay: Text content
"text=Click here"
// Last resort: CSS selectors
"div.modal > button.close"
Working with Snapshots
Accessibility snapshots are structured representations of the page:
// Example snapshot structure
{
"role": "WebArea",
"name": "Example Page",
"children": [
{
"role": "button",
"name": "Submit",
"focusable": true
},
{
"role": "textbox",
"name": "Email",
"value": "user@example.com"
}
]
}
Use snapshots to:
- Understand page structure
- Identify interactive elements
- Validate content presence
- Find navigation paths
Troubleshooting
Host Not Allowed
Error: Host not allowed: example.com
Solution: Add to allowed hosts:
{
"args": [
"@playwright/mcp@latest",
"--allowed-hosts", "example.com,*.example.com"
]
}
Or disable checks (development only):
{
"args": ["@playwright/mcp@latest", "--allowed-hosts", "*"]
}
Element Not Found
Error: Element not found: button[name='Submit']
Solutions:
-
Get current snapshot to see available elements:
const snapshot = await playwright_snapshot({}); -
Use more flexible selectors:
// Instead of exact match "button[name*='submit']" // Contains 'submit' "text=/submit/i" // Case-insensitive regex -
Wait for element by evaluating:
await playwright_evaluate({ expression: ` new Promise(resolve => { const check = () => { if (document.querySelector('button[name="Submit"]')) { resolve(true); } else { setTimeout(check, 100); } }; check(); }) ` });
Timeout Issues
Error: Timeout waiting for element
Solution: Increase timeout:
{
"args": ["@playwright/mcp@latest", "--timeout", "60000"]
}
Or wait explicitly:
await playwright_evaluate({
expression: "new Promise(r => setTimeout(r, 2000))"
});
Browser Not Launching
Error: Failed to launch browser
Solutions:
-
Check browser installation:
npx playwright install chromium -
Try different browser:
{ "args": ["@playwright/mcp@latest", "--browser", "firefox"] } -
Run in headed mode for debugging:
{ "args": ["@playwright/mcp@latest", "--headless", "false"] }
Best Practices
-
Use environment variables for secrets:
// Never hardcode credentials await playwright_fill({ selector: "input[type='password']", value: process.env.PASSWORD }); -
Take snapshots for debugging:
// Before and after critical actions const beforeSnapshot = await playwright_snapshot({}); await playwright_click({ selector: "button[name='Delete']" }); const afterSnapshot = await playwright_snapshot({}); -
Prefer accessibility selectors:
// Robust to UI changes "button[name='Save']" // vs fragile CSS "div.container > div:nth-child(2) > button.primary" -
Handle navigation timing:
await playwright_navigate({ url: "https://example.com" }); // Snapshot after navigate includes wait for load const snapshot = await playwright_snapshot({}); -
Combine tools for complex workflows:
// Navigate → Inspect → Act → Verify await playwright_navigate({ url: "..." }); const structure = await playwright_snapshot({}); await playwright_fill({ ... }); await playwright_click({ ... }); const result = await playwright_snapshot({});
vs Playwright CLI
Use Playwright MCP when:
- Building chat-based automation agents
- Need persistent browser state across tool calls
- Iterative reasoning over page structure
- Long-running autonomous workflows
Use Playwright CLI + SKILLS when:
- Working with coding agents that favor CLI tools
- Token efficiency is critical
- Managing large codebases alongside automation
- Need concise, purpose-built commands