Playwright MCP Server
by Microsoft ยท โญ 3.2k stars ยท updated 1 weeks ago
Browser automation using Microsoft Playwright. Navigate pages, interact with elements, capture screenshots, fill forms, and run E2E tests โ full cross-browser automation for AI workflows.
91
Excellent
Quality Score Breakdown
maintenance93/100
community90/100
documentation91/100
compatibility90/100
Use Cases
- โbrowser automation
- โe2e testing
- โweb interactions
- โscreenshot capture
โก 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": {
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp"
]
}
}
}โก Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp"
]
}
}
}๐ VS Code
.vscode/mcp.json
{
"mcp": {
"servers": {
"playwright": {
"command": "npx",
"args": [
"-y",
"@playwright/mcp"
]
}
}
}
}