@tontoko/fast-playwright-mcp 0.0.9 → 0.1.0
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 +4 -5
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
|
-
## Playwright MCP
|
|
1
|
+
## **Fast** Playwright MCP
|
|
2
|
+
|
|
3
|
+
This MCP server is a fork of the Microsoft one.
|
|
4
|
+
<https://github.com/microsoft/playwright-mcp>
|
|
2
5
|
|
|
3
6
|
A Model Context Protocol (MCP) server that provides browser automation capabilities using [Playwright](https://playwright.dev). This server enables LLMs to interact with web pages through structured accessibility snapshots, bypassing the need for screenshots or visually-tuned models.
|
|
4
7
|
|
|
@@ -15,10 +18,6 @@ A Model Context Protocol (MCP) server that provides browser automation capabilit
|
|
|
15
18
|
- `includeSnapshot: false` - Skip page snapshot for minimal responses (70-80% token reduction)
|
|
16
19
|
- `includeConsole: false` - Exclude console messages
|
|
17
20
|
- `includeTabs: false` - Hide tab information
|
|
18
|
-
- **Ultra-Compact Tool Descriptions**. One-line tool descriptions with full parameter details:
|
|
19
|
-
- 70-80% reduction in tool description tokens
|
|
20
|
-
- All expectation parameters inline without formatting overhead
|
|
21
|
-
- Smart tips for efficient usage (e.g., "Use selector to focus on specific area")
|
|
22
21
|
- **Image Compression**. Screenshot tool supports `imageOptions`:
|
|
23
22
|
- `format: 'jpeg'` - Use JPEG instead of PNG
|
|
24
23
|
- `quality: 1-100` - Compress images (e.g., 50 for 50% quality)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tontoko/fast-playwright-mcp",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.1.0",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"type": "git",
|
|
11
11
|
"url": "https://github.com/tontoko/fast-playwright-mcp"
|
|
12
12
|
},
|
|
13
|
-
"homepage": "https://playwright
|
|
13
|
+
"homepage": "https://github.com/tontoko/fast-playwright-mcp",
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=18"
|
|
16
16
|
},
|