Last active
March 29, 2025 09:25
-
-
Save up1/9c6c29f92074403fcdc3eb3ad1fb929d to your computer and use it in GitHub Desktop.
MCP with Playwright
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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" | |
] | |
} | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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