@playwright/mcp 0.0.43 → 0.0.44
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 +19 -0
- package/package.json +6 -4
package/README.md
CHANGED
|
@@ -128,6 +128,25 @@ Follow the MCP install [guide](https://github.com/google-gemini/gemini-cli/blob/
|
|
|
128
128
|
Go to `Advanced settings` -> `Extensions` -> `Add custom extension`. Name to your liking, use type `STDIO`, and set the `command` to `npx @playwright/mcp`. Click "Add Extension".
|
|
129
129
|
</details>
|
|
130
130
|
|
|
131
|
+
<details>
|
|
132
|
+
<summary>Kiro</summary>
|
|
133
|
+
|
|
134
|
+
Follow the MCP Servers [documentation](https://kiro.dev/docs/mcp/). For example in `.kiro/settings/mcp.json`:
|
|
135
|
+
|
|
136
|
+
```json
|
|
137
|
+
{
|
|
138
|
+
"mcpServers": {
|
|
139
|
+
"playwright": {
|
|
140
|
+
"command": "npx",
|
|
141
|
+
"args": [
|
|
142
|
+
"@playwright/mcp@latest"
|
|
143
|
+
]
|
|
144
|
+
}
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
```
|
|
148
|
+
</details>
|
|
149
|
+
|
|
131
150
|
<details>
|
|
132
151
|
<summary>LM Studio</summary>
|
|
133
152
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@playwright/mcp",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.44",
|
|
4
4
|
"description": "Playwright Tools for MCP",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -18,6 +18,8 @@
|
|
|
18
18
|
"lint": "npm run update-readme",
|
|
19
19
|
"update-readme": "node update-readme.js",
|
|
20
20
|
"docker-build": "docker build --no-cache -t playwright-mcp-dev:latest .",
|
|
21
|
+
"docker-rm": "docker rm playwright-mcp-dev",
|
|
22
|
+
"docker-run": "docker run -it -p 8080:8080 --name playwright-mcp-dev playwright-mcp-dev:latest",
|
|
21
23
|
"test": "playwright test",
|
|
22
24
|
"ctest": "playwright test --project=chrome",
|
|
23
25
|
"ftest": "playwright test --project=firefox",
|
|
@@ -35,15 +37,15 @@
|
|
|
35
37
|
}
|
|
36
38
|
},
|
|
37
39
|
"dependencies": {
|
|
38
|
-
"playwright": "1.57.0-alpha-2025-10-
|
|
39
|
-
"playwright-core": "1.57.0-alpha-2025-10-
|
|
40
|
+
"playwright": "1.57.0-alpha-2025-10-24",
|
|
41
|
+
"playwright-core": "1.57.0-alpha-2025-10-24"
|
|
40
42
|
},
|
|
41
43
|
"bin": {
|
|
42
44
|
"mcp-server-playwright": "cli.js"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
45
47
|
"@modelcontextprotocol/sdk": "^1.17.5",
|
|
46
|
-
"@playwright/test": "1.57.0-alpha-2025-10-
|
|
48
|
+
"@playwright/test": "1.57.0-alpha-2025-10-24",
|
|
47
49
|
"@types/node": "^24.3.0",
|
|
48
50
|
"zod-to-json-schema": "^3.24.6"
|
|
49
51
|
}
|