Pavel Feldman adcf150263
chore: fix internal tool usage (#35156)
Signed-off-by: Pavel Feldman <pavel.feldman@gmail.com>
Co-authored-by: Yury Semikhatsky <yurys@chromium.org>
2025-03-11 20:27:01 -07:00
..
2025-03-11 20:27:01 -07:00

Playwright MCP

This package is experimental and not yet ready for production use. It is a subject to change and will not respect semver versioning.

Example config

{
  "mcpServers": {
    "playwright": {
      "command": "npx",
      "args": [
        "@playwright/mcp"
      ],
      "env": {
        /**
         * If you run this server in a headless environment
         * (Cline on Linux, etc), either set HEADLESS to 1.
         */
        "PLAYWRIGHT_HEADLESS": "1",

        /**
         * ...or use Playwright Client/Server mode via
         * running the Playwright Server
         *     npx playwright run-server
         */
        "PLAYWRIGHT_WS_ENDPOINT": "ws://localhost:41541/"
      }
    }
  }
}