Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 1 addition & 17 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ Playwright MCP server supports following arguments. They can be provided in the
| --blocked-origins <origins> | semicolon-separated list of origins to block the browser from requesting. Blocklist is evaluated before allowlist. If used without the allowlist, requests not matching the blocklist are still allowed. Important: *does not* serve as a security boundary and *does not* affect redirects.<br>*env* `PLAYWRIGHT_MCP_BLOCKED_ORIGINS` |
| --block-service-workers | block service workers<br>*env* `PLAYWRIGHT_MCP_BLOCK_SERVICE_WORKERS` |
| --browser <browser> | browser or chrome channel to use, possible values: chrome, firefox, webkit, msedge.<br>*env* `PLAYWRIGHT_MCP_BROWSER` |
| --caps <caps> | comma-separated list of additional capabilities to enable, possible values: vision, pdf.<br>*env* `PLAYWRIGHT_MCP_CAPS` |
| --caps <caps> | comma-separated list of additional capabilities to enable, possible values: vision, pdf, devtools.<br>*env* `PLAYWRIGHT_MCP_CAPS` |
| --cdp-endpoint <endpoint> | CDP endpoint to connect to.<br>*env* `PLAYWRIGHT_MCP_CDP_ENDPOINT` |
| --cdp-header <headers...> | CDP headers to send with the connect request, multiple can be specified.<br>*env* `PLAYWRIGHT_MCP_CDP_HEADER` |
| --codegen <lang> | specify the language to use for code generation, possible values: "typescript", "none". Default is "typescript".<br>*env* `PLAYWRIGHT_MCP_CODEGEN` |
Expand Down Expand Up @@ -1128,22 +1128,6 @@ http.createServer(async (req, res) => {
<details>
<summary><b>Tracing (opt-in via --caps=tracing)</b></summary>

<!-- NOTE: This has been generated via update-readme.js -->

- **browser_start_tracing**
- Title: Start tracing
- Description: Start trace recording
- Parameters: None
- Read-only: **true**

<!-- NOTE: This has been generated via update-readme.js -->

- **browser_stop_tracing**
- Title: Stop tracing
- Description: Stop trace recording
- Parameters: None
- Read-only: **true**

</details>


Expand Down
91 changes: 69 additions & 22 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playwright-mcp-internal",
"version": "0.0.61",
"version": "0.0.62",
"private": true,
"repository": {
"type": "git",
Expand All @@ -17,14 +17,15 @@
"docker-run": "docker run -it -p 8080:8080 --name playwright-mcp-dev playwright-mcp-dev:latest",
"lint": "npm run lint --workspaces",
"test": "npm run test --workspaces",
"build": "npm run build --workspaces"
"build": "npm run build --workspaces",
"bump": "npm version --workspaces --no-git-tag-version"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@playwright/test": "1.59.0-alpha-1769561805000",
"@playwright/test": "1.59.0-alpha-1769819922000",
"@types/node": "^24.3.0"
}
}
2 changes: 1 addition & 1 deletion packages/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/mcp-extension",
"version": "0.0.61",
"version": "0.0.62",
"description": "Playwright MCP Browser Extension",
"private": true,
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/playwright-cli-stub/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "playwright-cli",
"version": "0.261.0",
"version": "0.0.62",
"description": "Playwright CLI",
"repository": "github:Microsoft/playwright-cli",
"homepage": "https://playwright.dev",
Expand Down
6 changes: 3 additions & 3 deletions packages/playwright-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/cli",
"version": "0.0.61",
"version": "0.0.62",
"description": "Playwright CLI",
"repository": {
"type": "git",
Expand All @@ -21,8 +21,8 @@
},
"dependencies": {
"minimist": "^1.2.5",
"playwright": "1.59.0-alpha-1769561805000",
"playwright-core": "1.59.0-alpha-1769561805000"
"playwright": "1.59.0-alpha-1769819922000",
"playwright-core": "1.59.0-alpha-1769819922000"
},
"bin": {
"playwright-cli": "playwright-cli.js"
Expand Down
6 changes: 3 additions & 3 deletions packages/playwright-mcp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@playwright/mcp",
"version": "0.0.61",
"version": "0.0.62",
"description": "Playwright Tools for MCP",
"repository": {
"type": "git",
Expand Down Expand Up @@ -34,8 +34,8 @@
}
},
"dependencies": {
"playwright": "1.59.0-alpha-1769561805000",
"playwright-core": "1.59.0-alpha-1769561805000"
"playwright": "1.59.0-alpha-1769819922000",
"playwright-core": "1.59.0-alpha-1769819922000"
},
"bin": {
"playwright-mcp": "cli.js"
Expand Down
Loading