Skip to content

Commit eb7e237

Browse files
giordano-lucasclaude
authored andcommitted
docs(browser): add Notte cloud browser to direct WebSocket CDP providers
Notte exposes a CDP-compatible WebSocket gateway at wss://us-prod.notte.cc/sessions/connect?token=<NOTTE_API_KEY> that auto-creates a session on connect — the same shape OpenClaw's existing "Direct WebSocket CDP providers" section was generically framed for (per #31085). Real behaviour proof (against wss://us-prod.notte.cc/sessions/connect): $ openclaw browser --browser-profile notte open https://example.com opened: https://example.com/ tab: t4 id: 7FE04AC44931A6E1C799DE4ABF0DC807 A screenshot captured against the same session is a 1254x1111 PNG of the rendered example.com page. Playwright connectOverCDP flow against the same URL (today): connectOverCDP 695ms context.newCDPSession(page) 169ms session.send('Target.getTargetInfo') → targetId 87ms page.goto('https://example.com') 631ms total 1.8s AI-assisted (Claude Opus 4.7). codex review --base origin/main returned clean. See PR description for the full pre-flight checklist. Co-authored-by: Claude Opus 4.7 <noreply@anthropic.com>
1 parent beb6652 commit eb7e237

1 file changed

Lines changed: 36 additions & 0 deletions

File tree

docs/tools/browser.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -482,6 +482,42 @@ Notes:
482482
- See the [Browserbase docs](https://docs.browserbase.com) for full API
483483
reference, SDK guides, and integration examples.
484484

485+
### Notte
486+
487+
[Notte](https://www.notte.cc) is a cloud platform for running headless
488+
browsers with built-in stealth, residential proxies, and a CDP-native
489+
WebSocket gateway.
490+
491+
```json5
492+
{
493+
browser: {
494+
enabled: true,
495+
defaultProfile: "notte",
496+
remoteCdpTimeoutMs: 3000,
497+
remoteCdpHandshakeTimeoutMs: 5000,
498+
profiles: {
499+
notte: {
500+
cdpUrl: "wss://us-prod.notte.cc/sessions/connect?token=<NOTTE_API_KEY>",
501+
color: "#7C3AED",
502+
},
503+
},
504+
},
505+
}
506+
```
507+
508+
Notes:
509+
510+
- [Sign up](https://console.notte.cc) and copy your **API Key** from the
511+
console settings page.
512+
- Replace `<NOTTE_API_KEY>` with your real Notte API key.
513+
- Notte auto-creates a browser session on WebSocket connect, so no manual
514+
session creation step is needed. The session is destroyed when the
515+
WebSocket disconnects.
516+
- The free tier allows five concurrent sessions and 100 lifetime browser
517+
hours. See [pricing](https://www.notte.cc/#pricing) for paid plan limits.
518+
- See the [Notte docs](https://docs.notte.cc) for full API reference, SDK
519+
guides, and integration examples.
520+
485521
## Security
486522

487523
Key ideas:

0 commit comments

Comments
 (0)