@playwright/mcp 0.0.41-alpha-2025-10-02 → 0.0.41-alpha-2025-10-04
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 +46 -0
- 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>
|
|
@@ -165,6 +190,27 @@ code --add-mcp '{"name":"playwright","command":"npx","args":["@playwright/mcp@la
|
|
|
165
190
|
After installation, the Playwright MCP server will be available for use with your GitHub Copilot agent in VS Code.
|
|
166
191
|
</details>
|
|
167
192
|
|
|
193
|
+
<details>
|
|
194
|
+
<summary>Warp</summary>
|
|
195
|
+
|
|
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.
|
|
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
|
+
|
|
212
|
+
</details>
|
|
213
|
+
|
|
168
214
|
<details>
|
|
169
215
|
<summary>Windsurf</summary>
|
|
170
216
|
|