Chrome CDP
This built-in skill uses MCP Gateway's bundled cdp.mjs runner. It talks
directly to Chrome DevTools Protocol over WebSocket with no third-party browser
automation bridge.
Default Browser Mode
By default, the gateway starts or reuses a visible Chromium-family browser in managed launch mode.
- It does not attach to the user's already-open Chrome unless the gateway
process is started with
CDP_BROWSER_MODE=attach. - It uses a gateway-managed runtime directory for target caches, per-tab daemons, and CDP state.
- It sets
CDP_PROFILE_MODE=persistentby default. - It sets
CDP_USER_DATA_DIRto the gateway-owned persistent profile path:mcp-gateway/builtin-skills/chrome-cdp/chrome-user-dataunder the OS local data directory. - Cookies, cache, localStorage, and login sessions are reused across commands, browser restarts, and gateway restarts unless the site expires them or the profile directory is deleted.
Cache and Login State
Default behavior is to reuse the existing browser cache/profile. Do not create a fresh profile just because a new task starts, a new page is opened, or the browser was closed and reopened.
Use the default persistent profile when the user asks to:
- open a page
- continue browsing
- debug a site
- use an already logged-in session
- reopen the browser later
Only use a new cache/profile when the user explicitly asks for a clean browser,
fresh cache, separate login, separate account, temporary session, or similar.
In that case, start the gateway with a different CDP_USER_DATA_DIR, or set
CDP_PROFILE_MODE=empty for a blank managed profile. Do not delete or overwrite
the default persistent profile unless the user explicitly asks to clear saved
browser data.
Commands
Short form accepted by the gateway:
open https://example.com
list
snap
eval "document.title"
netclear
net api/chat
netget 1234.56 --request-file "D:\tmp\chat-request.txt" --response-file "D:\tmp\chat-response.txt"
stop
You may also pass the script form; the gateway still runs its bundled script:
node cdp.mjs open https://example.com
Targets
Page-scoped commands can take a target prefix from list.
list
snap <target>
html <target> ".message-list"
click <target> "button[type=submit]"
For convenience, open, launch, and list maintain an active target. These
commands may omit the target and use the active page:
snap
eval "document.title"
netclear
net chat
netget <request-id>
If multiple pages are open and no active target is known, run list and pass
the target prefix explicitly.
Navigation and DOM
launch [url] # start or reuse managed browser
open [url] # open a tab and select it as active
list # list open pages and target prefixes
snap [target] # accessibility tree snapshot
html [target] [selector] # full page or element HTML
nav <target> <url> # navigate target to URL
eval [target] <js> # evaluate JavaScript in the page
evalraw <target> <method> [json]# raw CDP command passthrough
eval accepts expressions or function/IIFE source. When calling this tool
through MCP Gateway on Windows, quote the whole JavaScript expression as one
argument.
Interaction
click <target> <selector> # CSS selector
clickxy <target> <x> <y> # CSS pixel coordinates
type <target> <text> # Input.insertText at current focus
loadall <target> <selector> [ms]
shot [target] [file] [--inline-base64]
Use type after focusing an input with click or clickxy. It uses CDP input
events and works better than DOM assignment for cross-origin iframes.
Screenshot output modes
- Default writes the PNG to disk under the runtime directory (or
[file]) and prints its absolute path plus DPR / coordinate mapping. Choose this when the image is large, must be reused across turns, or should not load the model's context window. shot [target] [file] --inline-base64skips the file write and returns amimeType: image/pngbase64 payload inside stdout (as JSON after the[inlineBase64 json]marker), plus the same DPR / coordinate mapping lines. Choose this when a multimodal model should consume the image directly in the current turn.
Network Debugging
Use the CDP Network recorder for searchable request capture.
netclear [target] # enable CDP Network and clear captured events
net [target] [filter] # list/search captured requests
netget [target] <request-id> [--full]
netget [target] <request-id> --request-file "<abs-path>" --response-file "<abs-path>"
perfnet [target] # PerformanceResourceTiming fallback
Recommended request capture flow:
- Open or select the target page.
- Run
netclear. - Perform the user action that sends the request.
- Run
net <filter>with a URL, method, endpoint fragment, MIME type, or keyword. - Copy the request id prefix from
net. - Run
netget <request-id> --request-file "<abs-path>" --response-file "<abs-path>"when full bodies are needed.
netget redacts sensitive headers such as Authorization, Cookie, and
Set-Cookie in its JSON output. Never print or summarize sensitive headers,
tokens, device ids, or session ids in the final answer.
If no CDP record appears, run perfnet to inspect browser resource timing, then
repeat with netclear before the next user action. Network capture only records
events after it has been enabled.
For WebSocket traffic, netget returns captured frames for the selected
WebSocket request id.
Raw CDP
Use evalraw for precise DevTools operations that are not wrapped by a
high-level command:
evalraw <target> "DOM.getDocument" "{}"
evalraw <target> "Network.enable" "{\"maxPostDataSize\":10485760}"
Prefer the high-level netclear, net, and netget commands for normal
request debugging because they keep a per-tab event history.
Browser and Profile Selection
Environment variables for the gateway process:
CDP_BROWSER=chrome|edge|brave|chromiumCDP_BROWSER_MODE=launch|attachCDP_USER_DATA_DIR=<absolute path>CDP_PROFILE_MODE=persistent|clone|emptyCDP_PROFILE_SOURCE_DIR=<absolute path>for clone modeCDP_RUNTIME_DIR=<absolute path>
Default bundled mode is launch + persistent. Attach mode connects to an
already-running browser with remote debugging enabled and may trigger Chrome's
manual debugging approval prompt.
Lifecycle
stop [target]
stop without a target stops per-tab CDP daemons, closes the managed browser,
and clears active runtime state such as managed-browser.json, pages.json,
and the active target cache. The managed browser profile remains on disk so
future launches reuse the same login/cache state.
stop <target> only stops that target's daemon and leaves the managed browser
running.
If a previous managed browser crashed or the gateway was interrupted, the next command automatically clears stale runtime state and retries the managed browser connection once.
I/O Conventions
Files produced by this skill (for example netget --request-file,
--response-file, or shot <file>) land under allowed directories. When you
need to look at or edit those files afterwards:
- Read them with
read_fileso output stays line-numbered and capped; do not useshell_commandwithcat,Get-Content,type,sed,head, ortailfor these files. - Edit or rewrite them with
multi_edit_file; do not useshell_commandredirection,Set-Content, or ad-hoc scripts for normal text edits.
This keeps the capture pipeline auditable and lets the gateway enforce path guards on every follow-up read/write.