@playwright/mcp 1.52.0-alpha-2025-03-19 → 1.52.0-alpha-1742404918000
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 +5 -5
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -109,27 +109,27 @@ The Playwright MCP provides a set of tools for browser automation. Here are all
|
|
|
109
109
|
- **browser_click**
|
|
110
110
|
- Description: Perform click on a web page
|
|
111
111
|
- Parameters:
|
|
112
|
-
- `element` (string): Human-readable element description used to obtain
|
|
112
|
+
- `element` (string): Human-readable element description used to obtain permission to interact with the element
|
|
113
113
|
- `ref` (string): Exact target element reference from the page snapshot
|
|
114
114
|
|
|
115
115
|
- **browser_hover**
|
|
116
116
|
- Description: Hover over element on page
|
|
117
117
|
- Parameters:
|
|
118
|
-
- `element` (string): Human-readable element description used to obtain
|
|
118
|
+
- `element` (string): Human-readable element description used to obtain permission to interact with the element
|
|
119
119
|
- `ref` (string): Exact target element reference from the page snapshot
|
|
120
120
|
|
|
121
121
|
- **browser_drag**
|
|
122
122
|
- Description: Perform drag and drop between two elements
|
|
123
123
|
- Parameters:
|
|
124
|
-
- `startElement` (string): Human-readable source element description used to obtain
|
|
124
|
+
- `startElement` (string): Human-readable source element description used to obtain permission to interact with the element
|
|
125
125
|
- `startRef` (string): Exact source element reference from the page snapshot
|
|
126
|
-
- `endElement` (string): Human-readable target element description used to obtain
|
|
126
|
+
- `endElement` (string): Human-readable target element description used to obtain permission to interact with the element
|
|
127
127
|
- `endRef` (string): Exact target element reference from the page snapshot
|
|
128
128
|
|
|
129
129
|
- **browser_type**
|
|
130
130
|
- Description: Type text into editable element
|
|
131
131
|
- Parameters:
|
|
132
|
-
- `element` (string): Human-readable element description used to obtain
|
|
132
|
+
- `element` (string): Human-readable element description used to obtain permission to interact with the element
|
|
133
133
|
- `ref` (string): Exact target element reference from the page snapshot
|
|
134
134
|
- `text` (string): Text to type into the element
|
|
135
135
|
- `submit` (boolean): Whether to submit entered text (press Enter after)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@playwright/mcp",
|
|
3
|
-
"version": "1.52.0-alpha-
|
|
3
|
+
"version": "1.52.0-alpha-1742404918000",
|
|
4
4
|
"description": "Playwright Tools for MCP",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,11 +25,12 @@
|
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
27
|
"commander": "^13.1.0",
|
|
28
|
-
"playwright": "1.52.0-alpha-
|
|
28
|
+
"playwright": "1.52.0-alpha-1742404918000",
|
|
29
29
|
"zod-to-json-schema": "^3.24.4"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@modelcontextprotocol/sdk": "^1.6.1"
|
|
32
|
+
"@modelcontextprotocol/sdk": "^1.6.1",
|
|
33
|
+
"@types/node": "^22.13.10"
|
|
33
34
|
},
|
|
34
35
|
"bin": {
|
|
35
36
|
"mcp": "cli.js"
|