Codex Chrome MCP
Exposes Codex's Chrome plugin as an MCP server, enabling MCP clients to drive a real, logged-in Chrome browser by navigating, snapshotting the DOM, clicking, typing, taking screenshots, running Playwright, and sending raw CDP commands.
README
Codex Chrome MCP
English | 中文
Exposes Codex's Chrome ("Control Chrome with Codex") plugin as an MCP server, so any MCP client (Cursor, Claude Code, etc.) can drive your real, logged-in Chrome — navigate, snapshot the DOM, click, type, screenshot, run Playwright, and more.
How it works
Unlike Computer Use (a self-contained .exe), the Chrome plugin is a Node bundle (browser-client.mjs) that talks to Chrome through a Codex-owned native pipe and the Codex Chrome extension:
MCP client (Cursor, ...)
↓ MCP (stdio)
codex-chrome-mcp ──imports──▶ <Codex plugin cache>/chrome/<ver>/scripts/browser-client.mjs
↓ named pipe \\.\pipe\codex-browser-use\<uuid>
extension-host.exe ↔ Codex Chrome extension (hehggadaopoacecdllhhajmbjkdcmajg)
↓
your Chrome tabs
This server provides the host-environment shims that the Codex node_repl normally supplies (privileged pipe bridge, per-turn metadata, security mode, approval callback, fetch) and then reuses the official browser-client, so the API always matches your installed plugin.
Requirements
- Windows 10/11
- Node.js 18+
- ChatGPT desktop (formerly Codex Desktop) with the "Chrome" plugin installed ("Control Chrome with ChatGPT"; compatibility identifiers keep the Codex-era names —
~/.codex,codex-browser-use, …). The plugin'sbrowser-client.mjsmust exist under~/.codex/plugins/cache/openai-bundled/chrome/…, or use the vendored client undervendor/(required for raw CDP, see below). - A live
codex-browser-usepipe — created by the extension/host. In practice, keep the ChatGPT desktop app running and Chrome open with its extension enabled.
Install
See INSTALL.md. In short: npm install && npm run build, then register node <repo>/bin/codex-chrome-mcp.js as a stdio MCP server.
Tools
| Tool | Description |
|---|---|
browser_documentation |
Full live API reference for browser/tab (read before browser_exec). |
browser_exec |
Run arbitrary async JS against the API (agent, browser, tabs, user, tab in scope). Full-power escape hatch. |
list_user_tabs |
List the user's real open Chrome tabs. |
list_tabs |
List tabs controlled by this session. |
new_tab |
Create a controlled tab (optionally navigate). |
claim_tab |
Take control of an existing user tab. |
goto |
Navigate the active tab to a URL. Auto-restores the previous page if a failed navigation leaves a chrome-error:// page. |
snapshot |
url + title + node-id DOM (get_visible_dom); warns on chrome-error:// pages. |
screenshot |
Screenshot the active tab. |
click |
Click by node_id, selector, text, or x/y. |
type_text |
Type text (optionally fill a selector). |
press_key |
Press a key/chord. |
scroll |
Scroll by delta / into a container (node_id) / wheel at x+y / scrollIntoView a selector. Returns before/after position, pageHeight, nearBottom. |
eval_js |
Evaluate JS in the page via Playwright's hardened read-only sandbox (no fetch/XHR/DOM writes); warns on chrome-error:// pages. |
fetch_url |
⚠️ Known-incompatible with the extension backend this bridge targets: tabs.content is marked unsupportedByDefaultIn: extension in the 26.727 API docs, so it fails with browser.tabs.content is not a function. Use Node fetch inside browser_exec (public URLs) or goto + eval_js (authenticated pages) instead. |
get_console_logs |
Read the tab's console logs. |
cdp_send |
Send a raw Chrome DevTools Protocol command to the tab or an attached child target (developer mode). See Raw CDP. |
cdp_events |
Read buffered CDP events with cursor paging ({ cursor, events, hasMore, truncated }). See Raw CDP. |
name_session |
Name the browser session. |
finalize |
Clean up session tabs (optionally keep some). |
Raw CDP (developer mode)
cdp_send / cdp_events expose the tab's cdp capability — raw Chrome DevTools Protocol for developer/debugging work (network interception, emulation, profiling, breakpoints). Upstream's own guidance applies: prefer the higher-level tools for ordinary automation.
Requirements — all three must hold, otherwise the tools fail with Capability is not available: cdp:
- A 26.727+ browser-client: only 26.727+ injects the
cdptab capability (the plugin cache currently ships26.715.31925, which lacks it). This repo vendors a working client atvendor/chrome-26.727.51351/; pointCODEX_CHROME_CLIENTat itsscripts/browser-client.mjsand keep thescripts/anddocs/siblings together (elsebrowser_documentationbreaks). full_cdp_access_enabled = truein~/.codex/browser/config.toml— the client's full-CDP gate reads it through the shim'snodeRepl.configsurface (src/runtime.ts).- The tab is on an http(s) origin: navigate first; raw CDP is scoped to the tab's current web origin.
Behavior:
- The first
cdp_sendauto-attaches the debugger extension-side; Chrome shows its "started debugging" bar. Event domains (Page,Network, …) emit nothing until their.enablecommand is sent. - To observe events for an action: take a cursor with
cdp_events, perform the action, then read from that cursor withafter_sequence; page whilehasMoreis true (truncatedmeans older events were evicted; reuse the same filters while paging). - Child targets (iframes, workers): discover selectors from
Target.attachedToTargetevents, then passsession_idortarget_id.
Guardrails enforced upstream (some commands are refused with guidance):
- No top-level
Documentinterception — intercept sub-resources or page-initiated requests instead. Fetch.enablepatterns must name an explicit non-DocumentresourceType(XHR,Fetch,Script, …); an unscoped pattern implicitly includesDocumentand is rejected.- No
Fetch.disable— clear interception withFetch.enable({ patterns: [] }). - Breakpoints: a pause blocks the
Runtime.evaluatethat triggered it. Trigger fire-and-forget (awaitPromise: false, or wrap insetTimeout(fn, 0)), then pollDebugger.paused, inspect withDebugger.evaluateOnCallFrame, andDebugger.resume.
Verification harnesses (repo root): node verify-cdp.mjs runs the built modules end to end (capability injection, auto-attach, Runtime.evaluate, event paging); node verify-stdio.mjs spawns bin/codex-chrome-mcp.js over stdio exactly as an MCP client does. Verified end to end 2026-08-04 against the vendored 26.727 client.
Configuration (env)
| Variable | Default | Purpose |
|---|---|---|
CODEX_CHROME_CLIENT |
auto-detected | Absolute path to browser-client.mjs. Auto-detection (cache latest → native-host manifests → newest cache dir) currently resolves 26.715.31925, which has no cdp capability — pin vendor/chrome-26.727.51351/scripts/browser-client.mjs for raw CDP. |
CODEX_HOME |
~/.codex |
Codex home directory. |
CODEX_CHROME_BROWSER |
extension |
Backend id: extension, iab, cdp, or a specific id. |
CODEX_CHROME_SECURITY_MODE |
disabled-for-local-testing |
"" re-enables Codex's consent checks. |
CODEX_CHROME_AUTO_APPROVE |
true |
Auto-approve elicitation prompts. |
CODEX_CHROME_SESSION_NAME |
🔎 Cursor |
Session name shown in the UI. |
Caveats
- Not self-contained/redistributable: it reuses the proprietary plugin from your machine and is tied to the installed plugin version.
- Requires a live
codex-browser-usepipe (generally the ChatGPT desktop app + the Chrome extension active). - May share/contend with the app's own browser session; behavior can change across app/plugin updates.
- Raw CDP attaches Chrome's debugger to the tab (visible "started debugging" bar), is scoped to the tab's current web origin, and upstream refuses some commands (see Raw CDP). If CDP changes page/browser state beyond ordinary navigation and the change is left in place, upstream guidance is to tell the user what changed.
Disclaimer
Uses OpenAI's proprietary bundled browser-client.mjs at runtime; it is not redistributed here. No affiliation with OpenAI. Use at your own risk.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.