@playwright/mcp 0.0.55 → 0.0.56

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 CHANGED
@@ -84,15 +84,11 @@ Follow the MCP install [guide](https://modelcontextprotocol.io/quickstart/user),
84
84
  <details>
85
85
  <summary>Cline</summary>
86
86
 
87
- Follow the instruction in the section [MCP Integration](https://docs.cline.bot/mcp/mcp-overview)
87
+ Follow the instruction in the section [Configuring MCP Servers](https://docs.cline.bot/mcp/configuring-mcp-servers)
88
88
 
89
- Connection Types
90
- Local (stdio): Cline runs the server as a local process.
91
- Remote (streamableHttp): hosted/cloud environments.
92
- Legacy (sse): Only use if the host doesn't support the modern streamableHttp protocol.
89
+ **Example: Local Setup**
93
90
 
94
- Example: Local Setup
95
- Add the following to your cline_mcp_settings.json file:
91
+ Add the following to your [`cline_mcp_settings.json`](https://docs.cline.bot/mcp/configuring-mcp-servers#editing-mcp-settings-files) file:
96
92
 
97
93
  ```json
98
94
  {
@@ -580,6 +576,11 @@ npx @playwright/mcp@latest --config path/to/config.json
580
576
  */
581
577
  cdpHeaders?: Record<string, string>;
582
578
 
579
+ /**
580
+ * Timeout in milliseconds for connecting to CDP endpoint. Defaults to 30000 (30 seconds). Pass 0 to disable timeout.
581
+ */
582
+ cdpTimeout?: number;
583
+
583
584
  /**
584
585
  * Remote endpoint to connect to an existing Playwright server.
585
586
  */
package/config.d.ts CHANGED
@@ -64,6 +64,11 @@ export type Config = {
64
64
  */
65
65
  cdpHeaders?: Record<string, string>;
66
66
 
67
+ /**
68
+ * Timeout in milliseconds for connecting to CDP endpoint. Defaults to 30000 (30 seconds). Pass 0 to disable timeout.
69
+ */
70
+ cdpTimeout?: number;
71
+
67
72
  /**
68
73
  * Remote endpoint to connect to an existing Playwright server.
69
74
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@playwright/mcp",
3
- "version": "0.0.55",
3
+ "version": "0.0.56",
4
4
  "description": "Playwright Tools for MCP",
5
5
  "repository": {
6
6
  "type": "git",
@@ -37,15 +37,15 @@
37
37
  }
38
38
  },
39
39
  "dependencies": {
40
- "playwright": "1.58.0-alpha-2026-01-07",
41
- "playwright-core": "1.58.0-alpha-2026-01-07"
40
+ "playwright": "1.58.0-alpha-2026-01-16",
41
+ "playwright-core": "1.58.0-alpha-2026-01-16"
42
42
  },
43
43
  "bin": {
44
44
  "mcp-server-playwright": "cli.js"
45
45
  },
46
46
  "devDependencies": {
47
47
  "@modelcontextprotocol/sdk": "^1.24.0",
48
- "@playwright/test": "1.58.0-alpha-2026-01-07",
48
+ "@playwright/test": "1.58.0-alpha-2026-01-16",
49
49
  "@types/node": "^24.3.0"
50
50
  }
51
51
  }