Chrome DevTools MCP 服务器,让 AI 编码助手(Claude Code、Cursor、Copilot)直接控制和调试真实 Chrome 浏览器,实现截图、性能分析、网络请求检查、控制台调试和自动化操作
Browser
Allow your claws to do things remotely on a Desktop machine via MCP
Try itFull control of a remote machine via Remote Claws MCP: screenshots, mouse/keyboard, browser automation, run commands, read/write files on the remote host.
What it does
Full control of a remote machine via Remote Claws MCP: screenshots, mouse/keyboard, browser automation, run commands, read/write files on the remote host.
The skill document
Remote Claws — Remote Machine Control
Provide permission-based access to a remote desktop machine via the remote-claws MCP server (https://github.com/wentbackward/remote-claws) allowing your agent to run in a sandbox.
Four tools, each taking an action parameter: remote_browser, remote_desktop,
remote_exec, remote_files. Read each tool's description for its action
list — an unknown action returns the valid list.
CRITICAL: Remote vs Local
The remote_* tools act on the REMOTE machine. OpenClaw's built-in browser,
exec, read/write/edit act on the LOCAL gateway machine. Never
substitute one for the other. Take care not to confuse remote-claws with remote
SSH commands.
Strategy
- Screenshot first.
remote_desktop(action="screenshot")before clicking or typing; use the returned coordinates to target actions. Re-screenshot after actions — windows move, dialogs appear. - Prefer remote_browser for web tasks. CSS selectors are
resolution-independent. Only fall back to
remote_desktopfor things the browser can't reach (native dialogs, file pickers). - Prefer element names over coordinates.
remote_desktop(action= "click_element", ...)targets controls by name — survives window moves. - Exec is async.
remote_exec(action="run", ...)returns a process_id; poll withaction="get_output"(wait=true blocks),action="send_input"for stdin,action="kill"when done. - Denied actions are final. A "permission denied" result means server policy — do not retry unless the user requests it.
Common actions
- Desktop: screenshot, mouse_click, mouse_move, mouse_drag, scroll, type_text (ASCII only), press_key, find_window, focus_window, list_elements, click_element, get_element_text
- Browser: navigate, click, fill (clears first, Unicode-safe), type (appends), press_key, get_text, get_html, eval_js, screenshot, wait_for, select_option, go_back, go_forward, tabs_list, tab_new, tab_close
- Exec: run, get_output, send_input, kill, list
- Files: read (base64, offset/limit for chunks), write (base64), list, delete, move, info
Authentication & Security
The remote-claws MCP server requires a bearer token, configured in
openclaw.json when registering the server. Unauthenticated connections get
401. The server also supports IP allowlisting (allowed_ips), host header
validation (allowed_hosts), and per-action permission policies
(permissions.json). See the setup guide
and README.
Important Notes
- Screenshots are JPEG, max 1280x960. Coordinates are absolute pixels. If your main
LLM supports images, openclaw media handling should just work. Otherwise use
remote_desktop(action="screenshot", save_to_disk=true)and download the binary. - Reading Remote Files:
remote_files(action="read", ...)returns base64 only up to a threshold. Bigger reads fail with"inline read would return N bytes"to avoid context token explosion. Re-issue the same read withas_url=trueand use the returned URL to download — do NOT retry the plain read. Small chunks via offset/limit will work. type_textis ASCII only. For Unicode, use browserfill, or clipboard:remote_exec(action="run", command="powershell", args=["Set-Clipboard", ...])thenremote_desktop(action="press_key", keys="ctrl+v").- The browser launches on first use and stays open across calls. Sessions persist (cookies, local storage).
Related skills
Set up and use cua-driver (an MCP server) so an AI agent running on a remote/cloud host can drive a macOS desktop, with a persistent background daemon + reverse-SSH-tunnel wiring that survives reboots and stays in the background. Use when you want an agent on server A to click/type/capture on a Mac on another network, or to onboard a remote desktop onto any MCP-capable agent (Hermes, Claude Code, Codex, Cursor, OpenCode). Covers install, macOS TCC grants, remote login, reverse tunnel, per-agent MCP config, health checks, and safety (bounded mode).
Configure and route Dataify MCP tools safely
Configure a powerful macOS machine to host multiple dedicated OpenClaw agent users with Fast User Switching, a shared Homebrew toolchain, per-user OpenClaw h...
Allows this local OpenClaw agent to engage and socialize on the global OpenClaw Community Social Network.
Thin OpenClaw and ClawHub wrapper for the published clawfetch npm CLI, used to fetch web pages, GitHub READMEs, and Reddit threads as markdown.