@playwright/mcp 0.0.41-alpha-2025-10-03 → 0.0.41-alpha-2025-10-05

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.
Files changed (2) hide show
  1. package/README.md +39 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -38,6 +38,31 @@ First, install the Playwright MCP server with your client.
38
38
 
39
39
  [<img src="https://img.shields.io/badge/VS_Code-VS_Code?style=flat-square&label=Install%20Server&color=0098FF" alt="Install in VS Code">](https://insiders.vscode.dev/redirect?url=vscode%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522playwright%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522%2540playwright%252Fmcp%2540latest%2522%255D%257D) [<img alt="Install in VS Code Insiders" src="https://img.shields.io/badge/VS_Code_Insiders-VS_Code_Insiders?style=flat-square&label=Install%20Server&color=24bfa5">](https://insiders.vscode.dev/redirect?url=vscode-insiders%3Amcp%2Finstall%3F%257B%2522name%2522%253A%2522playwright%2522%252C%2522command%2522%253A%2522npx%2522%252C%2522args%2522%253A%255B%2522%2540playwright%252Fmcp%2540latest%2522%255D%257D)
40
40
 
41
+ <details>
42
+ <summary>Amp</summary>
43
+
44
+ Add via the Amp VS Code extension settings screen or by updating your settings.json file:
45
+
46
+ ```json
47
+ "amp.mcpServers": {
48
+ "playwright": {
49
+ "command": "npx",
50
+ "args": [
51
+ "@playwright/mcp@latest"
52
+ ]
53
+ }
54
+ }
55
+ ```
56
+
57
+ **Amp CLI Setup:**
58
+
59
+ Add via the `amp mcp add`command below
60
+
61
+ ```bash
62
+ amp mcp add playwright -- npx @playwright/mcp@latest
63
+ ```
64
+
65
+ </details>
41
66
 
42
67
  <details>
43
68
  <summary>Claude Code</summary>
@@ -170,6 +195,20 @@ After installation, the Playwright MCP server will be available for use with you
170
195
 
171
196
  Go to `Settings` -> `AI` -> `Manage MCP Servers` -> `+ Add` to [add an MCP Server](https://docs.warp.dev/knowledge-and-collaboration/mcp#adding-an-mcp-server). Use the standard config above.
172
197
 
198
+ Alternatively, use the slash command `/add-mcp` in the Warp prompt and paste the standard config from above:
199
+ ```js
200
+ {
201
+ "mcpServers": {
202
+ "playwright": {
203
+ "command": "npx",
204
+ "args": [
205
+ "@playwright/mcp@latest"
206
+ ]
207
+ }
208
+ }
209
+ }
210
+ ```
211
+
173
212
  </details>
174
213
 
175
214
  <details>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playwright/mcp",
3
- "version": "0.0.41-alpha-2025-10-03",
3
+ "version": "0.0.41-alpha-2025-10-05",
4
4
  "description": "Playwright Tools for MCP",
5
5
  "repository": {
6
6
  "type": "git",