24 KiB
summary, read_when, title
| summary | read_when | title | |||
|---|---|---|---|---|---|
| Integrated browser control service + action commands |
|
Browser (OpenClaw-managed) |
OpenClaw can run a dedicated Chrome/Brave/Edge/Chromium profile that the agent controls. It is isolated from your personal browser and is managed through a small local control service inside the Gateway (loopback only).
Beginner view:
- Think of it as a separate, agent-only browser.
- The
openclawprofile does not touch your personal browser profile. - The agent can open tabs, read pages, click, and type in a safe lane.
- The built-in
userprofile attaches to your real signed-in Chrome session via Chrome MCP.
What you get
- A separate browser profile named openclaw (orange accent by default).
- Deterministic tab control (list/open/focus/close).
- Agent actions (click/type/drag/select), snapshots, screenshots, PDFs.
- Optional multi-profile support (
openclaw,work,remote, ...).
This browser is not your daily driver. It is a safe, isolated surface for agent automation and verification.
Quick start
openclaw browser --browser-profile openclaw status
openclaw browser --browser-profile openclaw start
openclaw browser --browser-profile openclaw open https://example.com
openclaw browser --browser-profile openclaw snapshot
If you get “Browser disabled”, enable it in config (see below) and restart the Gateway.
If openclaw browser is missing entirely, or the agent says the browser tool
is unavailable, jump to Missing browser command or tool.
Plugin control
The default browser tool is a bundled plugin. Disable it to replace it with another plugin that registers the same browser tool name:
{
plugins: {
entries: {
browser: {
enabled: false,
},
},
},
}
Defaults need both plugins.entries.browser.enabled and browser.enabled=true. Disabling only the plugin removes the openclaw browser CLI, browser.request gateway method, agent tool, and control service as one unit; your browser.* config stays intact for a replacement.
Browser config changes require a Gateway restart so the plugin can re-register its service.
Missing browser command or tool
If openclaw browser is unknown after an upgrade, browser.request is missing, or the agent reports the browser tool as unavailable, the usual cause is a plugins.allow list that omits browser. Add it:
{
plugins: {
allow: ["telegram", "browser"],
},
}
browser.enabled=true, plugins.entries.browser.enabled=true, and tools.alsoAllow: ["browser"] do not substitute for allowlist membership — the allowlist gates plugin loading, and tool policy only runs after load. Removing plugins.allow entirely also restores the default.
Profiles: openclaw vs user
openclaw: managed, isolated browser (no extension required).user: built-in Chrome MCP attach profile for your real signed-in Chrome session.
For agent browser tool calls:
- Default: use the isolated
openclawbrowser. - Prefer
profile="user"when existing logged-in sessions matter and the user is at the computer to click/approve any attach prompt. profileis the explicit override when you want a specific browser mode.
Set browser.defaultProfile: "openclaw" if you want managed mode by default.
Configuration
Browser settings live in ~/.openclaw/openclaw.json.
{
browser: {
enabled: true, // default: true
ssrfPolicy: {
// dangerouslyAllowPrivateNetwork: true, // opt in only for trusted private-network access
// allowPrivateNetwork: true, // legacy alias
// hostnameAllowlist: ["*.example.com", "example.com"],
// allowedHostnames: ["localhost"],
},
// cdpUrl: "http://127.0.0.1:18792", // legacy single-profile override
remoteCdpTimeoutMs: 1500, // remote CDP HTTP timeout (ms)
remoteCdpHandshakeTimeoutMs: 3000, // remote CDP WebSocket handshake timeout (ms)
defaultProfile: "openclaw",
color: "#FF4500",
headless: false,
noSandbox: false,
attachOnly: false,
executablePath: "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser",
profiles: {
openclaw: { cdpPort: 18800, color: "#FF4500" },
work: { cdpPort: 18801, color: "#0066CC" },
user: {
driver: "existing-session",
attachOnly: true,
color: "#00AA00",
},
brave: {
driver: "existing-session",
attachOnly: true,
userDataDir: "~/Library/Application Support/BraveSoftware/Brave-Browser",
color: "#FB542B",
},
remote: { cdpUrl: "http://10.0.0.42:9222", color: "#00AA00" },
},
},
}
- Control service binds to loopback on a port derived from
gateway.port(default18791= gateway + 2). Overridinggateway.portorOPENCLAW_GATEWAY_PORTshifts the derived ports in the same family. - Local
openclawprofiles auto-assigncdpPort/cdpUrl; set those only for remote CDP.cdpUrldefaults to the managed local CDP port when unset. remoteCdpTimeoutMsapplies to remote (non-loopback) CDP HTTP reachability checks;remoteCdpHandshakeTimeoutMsapplies to remote CDP WebSocket handshakes.
- Browser navigation and open-tab are SSRF-guarded before navigation and best-effort re-checked on the final
http(s)URL afterwards. - In strict SSRF mode, remote CDP endpoint discovery and
/json/versionprobes (cdpUrl) are checked too. browser.ssrfPolicy.dangerouslyAllowPrivateNetworkis off by default; enable only when private-network browser access is intentionally trusted.browser.ssrfPolicy.allowPrivateNetworkremains supported as a legacy alias.
attachOnly: truemeans never launch a local browser; only attach if one is already running.color(top-level and per-profile) tints the browser UI so you can see which profile is active.- Default profile is
openclaw(managed standalone). UsedefaultProfile: "user"to opt into the signed-in user browser. - Auto-detect order: system default browser if Chromium-based; otherwise Chrome → Brave → Edge → Chromium → Chrome Canary.
driver: "existing-session"uses Chrome DevTools MCP instead of raw CDP. Do not setcdpUrlfor that driver.- Set
browser.profiles.<name>.userDataDirwhen an existing-session profile should attach to a non-default Chromium user profile (Brave, Edge, etc.).
Use Brave (or another Chromium-based browser)
If your system default browser is Chromium-based (Chrome/Brave/Edge/etc),
OpenClaw uses it automatically. Set browser.executablePath to override
auto-detection:
openclaw config set browser.executablePath "/usr/bin/google-chrome"
Or set it in config, per platform:
```json5 { browser: { executablePath: "/Applications/Brave Browser.app/Contents/MacOS/Brave Browser", }, } ``` ```json5 { browser: { executablePath: "C:\\Program Files\\BraveSoftware\\Brave-Browser\\Application\\brave.exe", }, } ``` ```json5 { browser: { executablePath: "/usr/bin/brave-browser", }, } ```Local vs remote control
- Local control (default): the Gateway starts the loopback control service and can launch a local browser.
- Remote control (node host): run a node host on the machine that has the browser; the Gateway proxies browser actions to it.
- Remote CDP: set
browser.profiles.<name>.cdpUrl(orbrowser.cdpUrl) to attach to a remote Chromium-based browser. In this case, OpenClaw will not launch a local browser.
Stopping behavior differs by profile mode:
- local managed profiles:
openclaw browser stopstops the browser process that OpenClaw launched - attach-only and remote CDP profiles:
openclaw browser stopcloses the active control session and releases Playwright/CDP emulation overrides (viewport, color scheme, locale, timezone, offline mode, and similar state), even though no browser process was launched by OpenClaw
Remote CDP URLs can include auth:
- Query tokens (e.g.,
https://provider.example?token=<token>) - HTTP Basic auth (e.g.,
https://user:pass@provider.example)
OpenClaw preserves the auth when calling /json/* endpoints and when connecting
to the CDP WebSocket. Prefer environment variables or secrets managers for
tokens instead of committing them to config files.
Node browser proxy (zero-config default)
If you run a node host on the machine that has your browser, OpenClaw can auto-route browser tool calls to that node without any extra browser config. This is the default path for remote gateways.
Notes:
- The node host exposes its local browser control server via a proxy command.
- Profiles come from the node’s own
browser.profilesconfig (same as local). nodeHost.browserProxy.allowProfilesis optional. Leave it empty for the legacy/default behavior: all configured profiles remain reachable through the proxy, including profile create/delete routes.- If you set
nodeHost.browserProxy.allowProfiles, OpenClaw treats it as a least-privilege boundary: only allowlisted profiles can be targeted, and persistent profile create/delete routes are blocked on the proxy surface. - Disable if you don’t want it:
- On the node:
nodeHost.browserProxy.enabled=false - On the gateway:
gateway.nodes.browser.mode="off"
- On the node:
Browserless (hosted remote CDP)
Browserless is a hosted Chromium service that exposes CDP connection URLs over HTTPS and WebSocket. OpenClaw can use either form, but for a remote browser profile the simplest option is the direct WebSocket URL from Browserless' connection docs.
Example:
{
browser: {
enabled: true,
defaultProfile: "browserless",
remoteCdpTimeoutMs: 2000,
remoteCdpHandshakeTimeoutMs: 4000,
profiles: {
browserless: {
cdpUrl: "wss://production-sfo.browserless.io?token=<BROWSERLESS_API_KEY>",
color: "#00AA00",
},
},
},
}
Notes:
- Replace
<BROWSERLESS_API_KEY>with your real Browserless token. - Choose the region endpoint that matches your Browserless account (see their docs).
- If Browserless gives you an HTTPS base URL, you can either convert it to
wss://for a direct CDP connection or keep the HTTPS URL and let OpenClaw discover/json/version.
Direct WebSocket CDP providers
Some hosted browser services expose a direct WebSocket endpoint rather than
the standard HTTP-based CDP discovery (/json/version). OpenClaw accepts three
CDP URL shapes and picks the right connection strategy automatically:
- HTTP(S) discovery —
http://host[:port]orhttps://host[:port]. OpenClaw calls/json/versionto discover the WebSocket debugger URL, then connects. No WebSocket fallback. - Direct WebSocket endpoints —
ws://host[:port]/devtools/<kind>/<id>orwss://...with a/devtools/browser|page|worker|shared_worker|service_worker/<id>path. OpenClaw connects directly via a WebSocket handshake and skips/json/versionentirely. - Bare WebSocket roots —
ws://host[:port]orwss://host[:port]with no/devtools/...path (e.g. Browserless, Browserbase). OpenClaw tries HTTP/json/versiondiscovery first (normalising the scheme tohttp/https); if discovery returns awebSocketDebuggerUrlit is used, otherwise OpenClaw falls back to a direct WebSocket handshake at the bare root. This lets a barews://pointed at a local Chrome still connect, since Chrome only accepts WebSocket upgrades on the specific per-target path from/json/version.
Browserbase
Browserbase is a cloud platform for running headless browsers with built-in CAPTCHA solving, stealth mode, and residential proxies.
{
browser: {
enabled: true,
defaultProfile: "browserbase",
remoteCdpTimeoutMs: 3000,
remoteCdpHandshakeTimeoutMs: 5000,
profiles: {
browserbase: {
cdpUrl: "wss://connect.browserbase.com?apiKey=<BROWSERBASE_API_KEY>",
color: "#F97316",
},
},
},
}
Notes:
- Sign up and copy your API Key from the Overview dashboard.
- Replace
<BROWSERBASE_API_KEY>with your real Browserbase API key. - Browserbase auto-creates a browser session on WebSocket connect, so no manual session creation step is needed.
- The free tier allows one concurrent session and one browser hour per month. See pricing for paid plan limits.
- See the Browserbase docs for full API reference, SDK guides, and integration examples.
Security
Key ideas:
- Browser control is loopback-only; access flows through the Gateway’s auth or node pairing.
- The standalone loopback browser HTTP API uses shared-secret auth only:
gateway token bearer auth,
x-openclaw-password, or HTTP Basic auth with the configured gateway password. - Tailscale Serve identity headers and
gateway.auth.mode: "trusted-proxy"do not authenticate this standalone loopback browser API. - If browser control is enabled and no shared-secret auth is configured, OpenClaw
auto-generates
gateway.auth.tokenon startup and persists it to config. - OpenClaw does not auto-generate that token when
gateway.auth.modeis alreadypassword,none, ortrusted-proxy. - Keep the Gateway and any node hosts on a private network (Tailscale); avoid public exposure.
- Treat remote CDP URLs/tokens as secrets; prefer env vars or a secrets manager.
Remote CDP tips:
- Prefer encrypted endpoints (HTTPS or WSS) and short-lived tokens where possible.
- Avoid embedding long-lived tokens directly in config files.
Profiles (multi-browser)
OpenClaw supports multiple named profiles (routing configs). Profiles can be:
- openclaw-managed: a dedicated Chromium-based browser instance with its own user data directory + CDP port
- remote: an explicit CDP URL (Chromium-based browser running elsewhere)
- existing session: your existing Chrome profile via Chrome DevTools MCP auto-connect
Defaults:
- The
openclawprofile is auto-created if missing. - The
userprofile is built-in for Chrome MCP existing-session attach. - Existing-session profiles are opt-in beyond
user; create them with--driver existing-session. - Local CDP ports allocate from 18800–18899 by default.
- Deleting a profile moves its local data directory to Trash.
All control endpoints accept ?profile=<name>; the CLI uses --browser-profile.
Existing-session via Chrome DevTools MCP
OpenClaw can also attach to a running Chromium-based browser profile through the official Chrome DevTools MCP server. This reuses the tabs and login state already open in that browser profile.
Official background and setup references:
Built-in profile:
user
Optional: create your own custom existing-session profile if you want a different name, color, or browser data directory.
Default behavior:
- The built-in
userprofile uses Chrome MCP auto-connect, which targets the default local Google Chrome profile.
Use userDataDir for Brave, Edge, Chromium, or a non-default Chrome profile:
{
browser: {
profiles: {
brave: {
driver: "existing-session",
attachOnly: true,
userDataDir: "~/Library/Application Support/BraveSoftware/Brave-Browser",
color: "#FB542B",
},
},
},
}
Then in the matching browser:
- Open that browser's inspect page for remote debugging.
- Enable remote debugging.
- Keep the browser running and approve the connection prompt when OpenClaw attaches.
Common inspect pages:
- Chrome:
chrome://inspect/#remote-debugging - Brave:
brave://inspect/#remote-debugging - Edge:
edge://inspect/#remote-debugging
Live attach smoke test:
openclaw browser --browser-profile user start
openclaw browser --browser-profile user status
openclaw browser --browser-profile user tabs
openclaw browser --browser-profile user snapshot --format ai
What success looks like:
statusshowsdriver: existing-sessionstatusshowstransport: chrome-mcpstatusshowsrunning: truetabslists your already-open browser tabssnapshotreturns refs from the selected live tab
What to check if attach does not work:
- the target Chromium-based browser is version
144+ - remote debugging is enabled in that browser's inspect page
- the browser showed and you accepted the attach consent prompt
openclaw doctormigrates old extension-based browser config and checks that Chrome is installed locally for default auto-connect profiles, but it cannot enable browser-side remote debugging for you
Agent use:
- Use
profile="user"when you need the user’s logged-in browser state. - If you use a custom existing-session profile, pass that explicit profile name.
- Only choose this mode when the user is at the computer to approve the attach prompt.
- the Gateway or node host can spawn
npx chrome-devtools-mcp@latest --autoConnect
Notes:
- This path is higher-risk than the isolated
openclawprofile because it can act inside your signed-in browser session. - OpenClaw does not launch the browser for this driver; it only attaches.
- OpenClaw uses the official Chrome DevTools MCP
--autoConnectflow here. IfuserDataDiris set, it is passed through to target that user data directory. - Existing-session can attach on the selected host or through a connected browser node. If Chrome lives elsewhere and no browser node is connected, use remote CDP or a node host instead.
Compared to the managed openclaw profile, existing-session drivers are more constrained:
- Screenshots — page captures and
--refelement captures work; CSS--elementselectors do not.--full-pagecannot combine with--refor--element. Playwright is not required for page or ref-based element screenshots. - Actions —
click,type,hover,scrollIntoView,drag, andselectrequire snapshot refs (no CSS selectors).clickis left-button only.typedoes not supportslowly=true; usefillorpress.pressdoes not supportdelayMs.hover,scrollIntoView,drag,select,fill, andevaluatedo not support per-call timeouts.selectaccepts a single value. - Wait / upload / dialog —
wait --urlsupports exact, substring, and glob patterns;wait --load networkidleis not supported. Upload hooks requirereforinputRef, one file at a time, no CSSelement. Dialog hooks do not support timeout overrides. - Managed-only features — batch actions, PDF export, download interception, and
responsebodystill require the managed browser path.
Isolation guarantees
- Dedicated user data dir: never touches your personal browser profile.
- Dedicated ports: avoids
9222to prevent collisions with dev workflows. - Deterministic tab control: target tabs by
targetId, not “last tab”.
Browser selection
When launching locally, OpenClaw picks the first available:
- Chrome
- Brave
- Edge
- Chromium
- Chrome Canary
You can override with browser.executablePath.
Platforms:
- macOS: checks
/Applicationsand~/Applications. - Linux: looks for
google-chrome,brave,microsoft-edge,chromium, etc. - Windows: checks common install locations.
Control API (optional)
For scripting and debugging, the Gateway exposes a small loopback-only HTTP
control API plus a matching openclaw browser CLI (snapshots, refs, wait
power-ups, JSON output, debug workflows). See
Browser control API for the full reference.
Troubleshooting
For Linux-specific issues (especially snap Chromium), see Browser troubleshooting.
For WSL2 Gateway + Windows Chrome split-host setups, see WSL2 + Windows + remote Chrome CDP troubleshooting.
CDP startup failure vs navigation SSRF block
These are different failure classes and they point to different code paths.
- CDP startup or readiness failure means OpenClaw cannot confirm that the browser control plane is healthy.
- Navigation SSRF block means the browser control plane is healthy, but a page navigation target is rejected by policy.
Common examples:
- CDP startup or readiness failure:
Chrome CDP websocket for profile "openclaw" is not reachable after startRemote CDP for profile "<name>" is not reachable at <cdpUrl>
- Navigation SSRF block:
open,navigate, snapshot, or tab-opening flows fail with a browser/network policy error whilestartandtabsstill work
Use this minimal sequence to separate the two:
openclaw browser --browser-profile openclaw start
openclaw browser --browser-profile openclaw tabs
openclaw browser --browser-profile openclaw open https://example.com
How to read the results:
- If
startfails withnot reachable after start, troubleshoot CDP readiness first. - If
startsucceeds buttabsfails, the control plane is still unhealthy. Treat this as a CDP reachability problem, not a page-navigation problem. - If
startandtabssucceed butopenornavigatefails, the browser control plane is up and the failure is in navigation policy or the target page. - If
start,tabs, andopenall succeed, the basic managed-browser control path is healthy.
Important behavior details:
- Browser config defaults to a fail-closed SSRF policy object even when you do not configure
browser.ssrfPolicy. - For the local loopback
openclawmanaged profile, CDP health checks intentionally skip browser SSRF reachability enforcement for OpenClaw's own local control plane. - Navigation protection is separate. A successful
startortabsresult does not mean a lateropenornavigatetarget is allowed.
Security guidance:
- Do not relax browser SSRF policy by default.
- Prefer narrow host exceptions such as
hostnameAllowlistorallowedHostnamesover broad private-network access. - Use
dangerouslyAllowPrivateNetwork: trueonly in intentionally trusted environments where private-network browser access is required and reviewed.
Agent tools + how control works
The agent gets one tool for browser automation:
browser— status/start/stop/tabs/open/focus/close/snapshot/screenshot/navigate/act
How it maps:
browser snapshotreturns a stable UI tree (AI or ARIA).browser actuses the snapshotrefIDs to click/type/drag/select.browser screenshotcaptures pixels (full page or element).browseraccepts:profileto choose a named browser profile (openclaw, chrome, or remote CDP).target(sandbox|host|node) to select where the browser lives.- In sandboxed sessions,
target: "host"requiresagents.defaults.sandbox.browser.allowHostControl=true. - If
targetis omitted: sandboxed sessions default tosandbox, non-sandbox sessions default tohost. - If a browser-capable node is connected, the tool may auto-route to it unless you pin
target="host"ortarget="node".
This keeps the agent deterministic and avoids brittle selectors.
Related
- Tools Overview — all available agent tools
- Sandboxing — browser control in sandboxed environments
- Security — browser control risks and hardening