@wordbricks/playwright-mcp 0.1.14 → 0.1.16

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/lib/config.js +0 -1
  2. package/package.json +5 -2
package/lib/config.js CHANGED
@@ -85,7 +85,6 @@ export function configFromCLIOptions(cliOptions) {
85
85
  // Add default Chrome args to avoid automation detection
86
86
  launchOptions.args = launchOptions.args || [];
87
87
  launchOptions.args.push('--disable-infobars');
88
- launchOptions.args.push('--disable-blink-features=AutomationControlled');
89
88
  // --app was passed, add app mode argument
90
89
  if (cliOptions.app) {
91
90
  launchOptions.args = launchOptions.args || [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wordbricks/playwright-mcp",
3
- "version": "0.1.14",
3
+ "version": "0.1.16",
4
4
  "description": "Playwright Tools for MCP",
5
5
  "type": "module",
6
6
  "repository": {
@@ -60,7 +60,7 @@
60
60
  "lodash": "^4.17.21",
61
61
  "mime": "^4.0.7",
62
62
  "ms": "^2.1.3",
63
- "playwright-core": "npm:rebrowser-playwright-core@1.52.0",
63
+ "playwright-core": "1.56.1",
64
64
  "raw-body": "^3.0.0",
65
65
  "typescript-parsec": "0.3.4",
66
66
  "ws": "^8.18.1",
@@ -95,5 +95,8 @@
95
95
  },
96
96
  "bin": {
97
97
  "mcp-server-playwright": "cli-wrapper.js"
98
+ },
99
+ "patchedDependencies": {
100
+ "playwright-core@1.56.1": "patches/playwright-core@1.56.1.patch"
98
101
  }
99
102
  }