You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[<imgsrc="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-y%2522%252C%2522%2540executeautomation%252Fplaywright-mcp-server%2522%255D%257D)
60
61
[<imgalt="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-y%2522%252C%2522%2540executeautomation%252Fplaywright-mcp-server%2522%255D%257D)
61
62
62
63
Alternatively, you can install the Playwright MCP server using the VS Code CLI:
@@ -87,6 +88,36 @@ Here's the Claude Desktop configuration to use the Playwright server:
87
88
}
88
89
```
89
90
91
+
## SSE (Server-Sent Events) Support
92
+
93
+
Playwright MCP Server now supports real-time event streaming via Server-Sent Events (SSE).
94
+
95
+
### How to Use
96
+
97
+
- The server exposes an SSE endpoint at `http://localhost:3001/events`.
98
+
- You can connect to this endpoint using any SSE-compatible client (such as EventSource in the browser or curl).
99
+
- Events are sent in real-time as they occur (e.g., new console logs, screenshots, etc.).
0 commit comments