diff --git a/README.md b/README.md index ae5cc0d..119303d 100644 --- a/README.md +++ b/README.md @@ -431,7 +431,7 @@ http.createServer(async (req, res) => { // Creates a headless Playwright MCP server with SSE transport const connection = await createConnection({ browser: { launchOptions: { headless: true } } }); const transport = new SSEServerTransport('/messages', res); - await connection.sever.connect(transport); + await connection.connect(transport); // ... });