Skip to content

Instantly share code, notes, and snippets.

@up1
Last active March 29, 2025 09:25
Show Gist options
  • Save up1/9c6c29f92074403fcdc3eb3ad1fb929d to your computer and use it in GitHub Desktop.
Save up1/9c6c29f92074403fcdc3eb3ad1fb929d to your computer and use it in GitHub Desktop.
MCP with Playwright
// with Head or UI mode
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest"
]
}
}
}
// with Headless mode
{
"mcpServers": {
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest",
"--headless"
]
}
}
}
$code --add-mcp '{"name":"playwright","command":"npx","args":["@playwright/mcp@latest"]}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment