| name | browser-use |
| description | Control the user's existing signed-in Chrome: callable Codex Chrome plugin first, then OpenClaw extension-backed mcporter, with direct DevTools attachment only as a last fallback. |
Browser Use
Control the user's existing real Chrome profile, especially for login-dependent work and live UI verification.
Route
- Use the Codex
Chrome or Chrome [Internal] plugin when it is callable in
the active session. Installed on disk is not enough.
- Otherwise prefer the OpenClaw extension-backed mcporter route.
- Use legacy direct DevTools attachment only as the explicit last fallback.
For mcporter, the MCP call remains the agent-facing control interface. The
OpenClaw extension is the transport underneath it, not a separate tool. Force
relay-only routing so a missing relay cannot silently become direct DevTools:
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.<tool>
Seeing an agent request the chrome-devtools MCP tool is therefore expected.
A Chrome Allow remote debugging? prompt or a relay-policy error indicates
that the extension transport was not used.
Never use isolated Chrome, the Codex in-app browser, Playwright, Puppeteer,
AppleScript, osascript, generic GUI scripting, or macOS open as a browser-control
substitute unless the user explicitly asks for an isolated or new browser.
Peekaboo is allowed only for Chrome or extension setup and visible prompts.
Login-heavy sites often depend on the real profile's cookies, SSO, device trust,
and extensions.
For a rendered-browser bug, prove behavior through this real profile. Treat
curl, source inspection, API checks, and isolated test browsers as supporting
evidence, not substitutes for live UI proof.
Extension Relay Model
OpenClaw creates a random per-host relay key in its mode-0600 credentials
directory. The extension and same-host clients use nonce-bound mutual HMAC
proofs. The reusable key is never sent to an unverified loopback listener,
placed in a URL, or passed to the child MCP process. Keep credentials out of
configuration, command output, chat, logs, and screenshots.
On a same-host relay, mcporter authenticates /json/version and upgrades the
same retained socket to /cdp, then gives chrome-devtools-mcp a protected
one-use local handoff. Agents still call the standard MCP tools; successful
relay routing is what removes direct DevTools attachment and Chrome's approval
prompt.
New pairings default to All tabs: every ordinary eligible tab is exposed
except tabs explicitly paused in the popup. Existing pairings keep their stored
mode. In Selected tabs mode, membership in the Chrome tab group titled
OpenClaw is the sharing boundary. Restricted/internal pages, incognito,
other profiles, and tabs without an eligible URL remain excluded in both modes.
Topology Boundary
Direct remote Gateway pairing over wss:// lets OpenClaw's Gateway-side
browser tool control local Chrome. It does not create a local relay for a local
mcporter process. Do not routinely copy remote secrets or build ad-hoc SSH
tunnels around this boundary.
If local mcporter cannot authenticate to a local relay, the extension-backed
mcporter route is unavailable. Report that clearly or use the labeled legacy
fallback; never represent remote Gateway control or direct attachment as local
relay success.
Setup and Repair
- Run
openclaw browser extension install before Load unpacked. It copies
the extension to the stable OpenClaw-owned path, pre-registers that path's
deterministic Chrome ID, and prints the path to load. The first native call
then pairs automatically for local or browser-node topology.
- Use
openclaw browser extension status --json to verify the installed copy,
exact origins, and native-host registrations. Status must report no issues and
manualSetupRequired: false.
- Confirm Settings reports automatic setup ready and the popup reports
Connected. New installs should show All tabs unless the user changes
the access mode; no copied pairing string or popup setup is part of the normal
local flow.
- A previous native-host miss is cached for the Chrome process. If the extension
attempted native messaging before installation, restart Chrome once after
installing; repeated retries in the same process cannot repair that cache.
- After pairing or changing the relay route, stop the mcporter daemon before
re-running relay-only proof. A Gateway restart can leave the Chrome DevTools
child alive with a dead upstream socket;
mcporter daemon restart may reuse
that child, while mcporter daemon stop forces a clean process on next call.
- MCPorter discovers the actual relay through
openclaw browser extension cdp --json. Packaged OpenClaw is fast enough for
the five-second default. A source-checkout launcher may perform a freshness
build first; set MCPORTER_CHROME_DEVTOOLS_RELAY_TIMEOUT_MS=15000 for that
development setup rather than pinning a relay port.
- Direct remote Gateway pairing remains an Advanced manual flow. It serves the
Gateway browser path and does not create a local relay for local mcporter.
Do not use openclaw browser extension cdp --json or inspect process arguments
as routine diagnostics: both can expose relay credentials. If credential
exposure is suspected, rotate the per-host secret and pair again.
Fail-Closed Readiness Proof
Require every condition below before calling the extension route ready:
- Extension status reports the stable copy and exact native registrations with
no issues; Settings says automatic setup ready.
- The popup says Connected and the intended ordinary tab is not paused.
In Selected tabs mode, it must also belong to the OpenClaw group.
- mcporter has been restarted after pairing or relay-route changes.
- A call with
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require succeeds. This
policy forbids direct DevTools fallback, so success is positive relay proof.
- Selection and evaluation both succeed in a known eligible disposable tab.
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.list_pages --args '{}' --output text
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.select_page --args '{"pageId":9}' --output text
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.evaluate_script --args '{"function":"() => ({title: document.title, href: location.href})"}' --output json
A relay-policy error means the extension transport is unavailable; report or
repair it instead of retrying without require. A blocking Allow remote
debugging? prompt proves legacy attachment was attempted.
Typical Flow
List pages, select only a shared target, snapshot before acting, and use fresh
snapshot UIDs. Prefer DOM snapshots over screenshots unless layout matters.
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.list_pages --args '{}' --output text
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.select_page --args '{"pageId":9}' --output text
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.take_snapshot --args '{}' --output text
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.click --args '{"uid":"1_38","includeSnapshot":true}' --output text
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.fill --args '{"uid":"1_13","value":"text","includeSnapshot":true}' --output text
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.evaluate_script --args '{"function":"() => document.title"}' --output json
For live UI proof, capture the current page state before the action, perform
the requested interaction, then snapshot or evaluate the rendered result.
Keep secrets out of DOM, input, network, console, and screenshot output. For
credential checks, return only safe shape such as present/absent, length,
status code, or account/organization label.
If automation is unavailable, report the verification gap instead of silently switching to prohibited or isolated tooling.
Argument and Output Mechanics
--args accepts inline JSON only. It does not read @file. Flag-style named
arguments do:
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.navigate_page url=@/tmp/target-url.txt --output text
MCPORTER_CHROME_DEVTOOLS_RELAY_POLICY=require mcporter call chrome-devtools.evaluate_script function=@/tmp/probe.js --output json
Treat this as a safety primitive, not just ergonomics. A sign-in URL, magic
link, or callback URL is credential-equivalent: write it to a mode-0600 file and
pass it by file reference so it never reaches shell history, process arguments,
or captured tool output. The same form carries a multi-line JavaScript function
without quoting or control-character errors.
Other call mechanics worth knowing before a login flow:
- The default call timeout is short (about five seconds). Real navigation,
snapshots, and consent pages routinely exceed it, and the failure looks
identical to a hung page. Pass
--timeout 30000 for anything interactive.
take_screenshot with filePath is confined to the server's configured
workspace roots and refuses arbitrary paths. Omit filePath, read the
base64 image from --output json, and decode it locally.
new_page can fail with a restricted/unavailable tab when the target is not
shared. Navigate an already-shared tab instead of creating one.
mcporter list <server> --schema prints the real function signatures. Use it
rather than guessing parameter names.
Clicks That Do Not Click
A click by uid can return success and still do nothing: some pages bind
their handlers so that a synthetic click is ignored. Silence is not proof of
action, so verify state after every activation rather than assuming it worked.
When a click no-ops, drive the control from the keyboard with press_key
(Tab, Shift+Tab, Enter) and confirm focus with a screenshot before
committing. Focus rings are the only reliable evidence of which control is
about to receive Enter, and consent screens routinely put the safe-looking
prominent button next to a low-emphasis link that is the one you actually want.
Blind Enter on such a page picks the wrong control.
Snapshot uid values are invalidated by any navigation or re-render. Re-run
take_snapshot and re-resolve the uid after every step; a stale uid
reports that the element no longer exists, which is a cue to re-snapshot rather
than to retry the same call.
When the Relay Goes Empty Mid-Task
The relay can stop exposing tabs partway through a task because eligible tabs
were closed, the current tab became restricted or paused, Selected tabs mode
lost its group members, or the extension disconnected. The failure can be
quiet: list_pages may return an empty result and later calls time out.
Treat an empty page list as "the relay has no eligible tabs", not "the browser
is gone". Confirm Chrome is running, check the popup connection and current-tab
Pause/Allow state, then check the access mode. Only Selected tabs mode requires
restoring the OpenClaw group. Restarting mcporter cannot repair extension
disconnection, tab eligibility, or access policy.
Do not escalate to a full-profile attachment or an isolated browser to route
around it. When the task is a sign-in the user is present for, the faster and
more honest move is to hand the URL to the browser the user is already sitting
at, and if the flow's callback listens on another host, forward that port to
the user's machine first. Otherwise report the access gap.
Legacy Fallback: Full-Profile Direct Attachment
Use this only after the callable plugin and authenticated local extension relay
are unavailable. It exposes the full real-profile tab set and can show Chrome's
blocking Allow remote debugging? prompt.
When a visible, unambiguous Chrome prompt asks to allow the attachment, approve
it once, then rerun list_pages. If the prompt is absent, ambiguous, or the
retry fails, stop and ask the user or report that Chrome DevTools MCP is
unavailable. Do not loop approvals, repeatedly restart Chrome or mcporter, or
kill browser processes.
Verify that list_pages shows the intended real-profile tabs before acting. Always
label this path as full-profile direct attachment, never as OpenClaw extension relay success.