Proxied browser automation for live UI inspection and exploration. For Playwright test generation, use QE E2E Tests V2.
The Playwright MCP (/mcp/v2/playwright) is a browser automation endpoint
(often via PLAYWRIGHT_PROXY). It pairs the agent with a real browser so you
can navigate, inspect, and validate live UI — especially during failure healing with
playwright_test_analyzer on E2E Tests V2.
Use it for live UI inspection, navigation, capturing page state, and debugging a browser scenario. Prefer QE E2E Tests V2 to generate, record/refine, or heal Playwright tests.
Mount: /mcp/v2/playwright (when Playwright proxy is configured). Config key: playwright.
| Environment | URL | Transport | Status |
|---|---|---|---|
| Production | https://qe-mcp.bindg.com/mcp/v2/playwright |
http | Production |
~/.cursor/mcp.json{
"mcpServers": {
"playwright": {
"url": "https://qe-mcp.bindg.com/mcp/v2/playwright",
"transport": "http"
}
}
}
.vscode/mcp.json{
"servers": {
"playwright": {
"url": "https://qe-mcp.bindg.com/mcp/v2/playwright",
"type": "http"
}
},
"inputs": []
}
https://qe-mcp.bindg.com/mcp/v2/playwright.playwright or playwright-mcp.Cmd+Shift+P on Mac, Ctrl+Shift+P on Windows).https://qe-mcp.bindg.com/mcp/v2/playwright.playwright.playwright, navigate the
login flow and identify the key assertions we should include in an E2E test.
playwright, inspect this
page and suggest stable selectors for the primary actions.
playwright, validate
this workflow and then generate a Playwright E2E test plan.
playwright, reproduce
this UI issue and summarize the steps, expected behavior, and actual behavior.
https://beta.bloomberglaw.com/, follow redirects, wait for load. Report final
URL, document title, and whether you see a login form or the post-login app. If you hit a
captcha or SSO wall, say so and stop.
Playwright Codegen runs in your terminal, opens a real browser, records your interactions, and generates test code. The MCP cannot execute terminal commands directly, so the workflow is:
npx playwright codegen <url> in your terminal.The assistant should:
npx playwright codegen <url>.You can also use Playwright UI mode with:
npm run test:ui
In Cursor Settings → Tools & MCP, your Playwright server status should be connected (green). If it errors, check VPN, URL typos, and transport.
playwright, list
available tools or capabilities and provide a short ready checklist.