@playwright/mcp 0.0.38 → 0.0.39-alpha-2025-09-20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -0
- package/config.d.ts +5 -0
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -238,6 +238,8 @@ Playwright MCP server supports following arguments. They can be provided in the
|
|
|
238
238
|
the session into the output directory.
|
|
239
239
|
--secrets <path> path to a file containing secrets in the
|
|
240
240
|
dotenv format
|
|
241
|
+
--shared-browser-context reuse the same browser context between
|
|
242
|
+
all connected HTTP clients.
|
|
241
243
|
--storage-state <path> path to the storage state file for
|
|
242
244
|
isolated sessions.
|
|
243
245
|
--timeout-action <timeout> specify action timeout in milliseconds,
|
package/config.d.ts
CHANGED
|
@@ -100,6 +100,11 @@ export type Config = {
|
|
|
100
100
|
*/
|
|
101
101
|
saveTrace?: boolean;
|
|
102
102
|
|
|
103
|
+
/**
|
|
104
|
+
* Reuse the same browser context between all connected HTTP clients.
|
|
105
|
+
*/
|
|
106
|
+
sharedBrowserContext?: boolean;
|
|
107
|
+
|
|
103
108
|
/**
|
|
104
109
|
* Secrets are used to prevent LLM from getting sensitive data while
|
|
105
110
|
* automating scenarios such as authentication.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@playwright/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.39-alpha-2025-09-20",
|
|
4
4
|
"description": "Playwright Tools for MCP",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -33,15 +33,15 @@
|
|
|
33
33
|
}
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"playwright": "1.56.0-alpha-
|
|
37
|
-
"playwright-core": "1.56.0-alpha-
|
|
36
|
+
"playwright": "1.56.0-alpha-1758292576000",
|
|
37
|
+
"playwright-core": "1.56.0-alpha-1758292576000"
|
|
38
38
|
},
|
|
39
39
|
"bin": {
|
|
40
40
|
"mcp-server-playwright": "cli.js"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@modelcontextprotocol/sdk": "^1.17.5",
|
|
44
|
-
"@playwright/test": "1.56.0-alpha-
|
|
44
|
+
"@playwright/test": "1.56.0-alpha-1758292576000",
|
|
45
45
|
"@types/node": "^24.3.0",
|
|
46
46
|
"zod-to-json-schema": "^3.24.6"
|
|
47
47
|
}
|