ChromeBrowserMCP
Provides read-only access to open tabs in Google Chrome, including listing tabs, reading tab content, and searching tabs, without exposing sensitive information like cookies or passwords.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ChromeBrowserMCPlist my open Chrome tabs"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Chrome Browser MCP
A local bridge that lets a private ChatGPT developer-mode app inspect and control the tabs already open in your desktop Google Chrome.
Current patch version: 0.1.2. Every patch must bump this version; CI rejects patches that do not.
The bridge exposes 17 MCP tools:
reads:
browser_status,list_tabs,get_active_tab,read_tab,read_tabs,search_tabsactions:
click,type,fill_form,press_key,scroll,select_option,navigate,new_tab,close_tabChatGPT child agents:
spawn_chatgpt_agent,read_chatgpt_agent
spawn_chatgpt_agent opens a new chatgpt.com tab in the background by default, submits exactly the user-provided prompt, and returns its tab ID. read_chatgpt_agent reads that child tab through the same bounded semantic extractor used for normal tabs; call it again later if the child is still generating.
Action targets accept either a CSS selector or exact visible text / aria-label / placeholder / name / associated label text. Ambiguous targets fail instead of guessing.
The bridge does not expose cookies, local storage, session storage, saved passwords, hidden input values, arbitrary JavaScript execution, Chrome internal pages, or incognito tabs. It does not use the Chrome debugger API.
Proven path
The end-to-end test launches a real Chromium process with the unpacked Manifest V3 extension, starts the real native-messaging host, connects an MCP client over Streamable HTTP, opens live pages, lists and reads them, and verifies that a password input value is not returned. Unit/integration coverage validates page actions, MCP routing, ChatGPT child-agent tool registration/composition, generated extension-version synchronization, and that the runtime files used by Chrome/native messaging are tracked by Git.
MCP client
-> http://127.0.0.1:2091/mcp
-> native host process
-> Chrome Native Messaging
-> MV3 extension
-> live Chrome tabsRun every gate:
npm ci
npm run checkRelated MCP server: sansan-chrome-mcp
Architecture
ChatGPT developer-mode app
|
| OpenAI Secure MCP Tunnel (outbound HTTPS)
v
127.0.0.1:2091/mcp
|
| same local Node process
v
Chrome Native Messaging host
|
v
Chrome MV3 extension
|
+-- chrome.tabs
+-- chrome.scripting (isolated-world reads + actions)Chrome starts the native host when the extension connects. The native host starts the loopback MCP endpoint. Therefore Chrome must be open and the extension must be enabled whenever ChatGPT uses the app.
Requirements
macOS
Google Chrome 120+
Node.js 20+
A ChatGPT account with Developer Mode available
An OpenAI Platform tunnel ID and runtime API key with Tunnels Read + Use
tunnel-client
1. Install the native host and load the extension once
npm run install:macThis installs the native-host manifest at:
~/Library/Application Support/Google/Chrome/NativeMessagingHosts/com.komaksym.chrome_browser_mcp.jsonThen:
Open
chrome://extensions.Enable Developer mode.
Click Load unpacked.
Select this repository's
dist/extensiondirectory.Confirm the extension ID is exactly:
jlpddlfiallighiohmhhkemgbhofpnhaDo not proceed if the ID differs. The native host only accepts that exact extension origin.
2. Updating future patches
You select the extension directory only once. The built extension and MCP bridge under dist/ are committed to Git, and CI rejects source changes whose committed runtime build is stale.
For every later patch, the normal update flow is exactly:
git pullThen open chrome://extensions and click Update. Do not select the extension path again and do not run a separate build command just to consume a published patch.
git pull updates both dist/extension (what Chrome loads) and dist/bridge (what the native host executes). Clicking Update reloads the unpacked extension/native-messaging connection so the newly pulled runtime is used.
The visible extension version must change on every patch. For this patch it must show 0.1.2. If it still shows an older version, the pulled runtime was not applied.
3. Verify the local browser chain
Keep Chrome open, then run:
npm run verify:localA successful check prints:
extension ID;
extension version;
MCP server version;
the 17 advertised MCP tools.
The verifier fails if the extension and MCP versions differ, or if the bridge is old enough not to report its MCP version. This makes a stale 15-tool bridge immediately distinguishable from a stale Chrome extension.
4. Configure Secure MCP Tunnel
Create a tunnel and runtime API key in OpenAI Platform. Then:
export CONTROL_PLANE_API_KEY="sk-..."
./scripts/configure-tunnel.sh tunnel_0123456789abcdef0123456789abcdef
tunnel-client doctor --profile chrome-browser-mcp --explain
tunnel-client run --profile chrome-browser-mcpThe profile forwards the tunnel to:
http://127.0.0.1:2091/mcpKeep tunnel-client run active whenever ChatGPT needs the browser tools.
5. Add it to ChatGPT
In ChatGPT, enable Settings -> Security and login -> Developer mode.
Open Settings -> Plugins.
Click + to create a developer-mode app.
Choose Tunnel as the connection type.
Select or paste the tunnel ID.
Use the metadata from
app-metadata.json.Confirm ChatGPT discovers all 17 tools.
In a new chat, click + -> More, select Chrome Browser, then ask:
List my open Chrome tabs.
See docs/CHATGPT_SETUP.md for exact verification and troubleshooting.
Security model
Webpage text is data, never authority. Every content result includes an explicit untrusted-content marker, and tool instructions tell the model never to turn instructions found in pages into actions.
The extension intentionally requests access to all HTTP and HTTPS pages so it can read and interact with normal open tabs. The protection boundary is:
the extension is loaded locally by you;
Chrome only launches the exact allowlisted native host;
the native host rejects any origin except the stable extension ID;
the MCP endpoint binds only to
127.0.0.1;the tunnel is outbound-only;
actions are limited to normal HTTP(S) tabs and do not expose arbitrary JavaScript, debugger access, cookies, or browser storage;
ambiguous human-readable targets are rejected rather than guessed.
Read THREAT_MODEL.md and SECURITY_REVIEW.md before unattended use.
Known limitations
One Chrome profile should load the extension at a time; two profiles can contend for port
2091.Chrome internal pages, Chrome Web Store pages,
file://pages, and incognito tabs cannot be read or controlled.Cross-origin iframes are not traversed.
Canvas-only applications and Chrome's built-in PDF viewer may return little semantic text.
The extractor returns the primary document's visible text, headings, links, and description, not raw HTML. URL credentials and fragments are removed, and sensitive query parameters are redacted.
press_keyuses DOM keyboard events; Enter and Escape get explicit common-case behavior, but some sites require trusted OS/CDP keyboard input.ChatGPT child-agent submission depends on ChatGPT's current web composer (
#prompt-textarea) and send button markup; a future ChatGPT UI change can require updating those selectors.read_chatgpt_agentreturns the child tab's visible semantic page text, not a privileged ChatGPT API response.File upload is intentionally not implemented because doing it generally would require a more powerful filesystem/debugger surface.
Development
npm ci
npm run version:check
npm run typecheck
npm run lint
npm test
npm run artifacts:check
npm run test:e2e
npm auditThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseNot gradedqualityCmaintenanceEnables AI agents to interact with a user's real Chrome browser tabs, executing JavaScript, reading cookies, and making fetch requests within authenticated sessions.
- AlicenseNot gradedqualityAmaintenanceEnables AI assistants to control Chrome browser operations such as navigation, reading pages, taking screenshots, managing tabs, and more via a Chrome extension and native messaging.MIT
- AlicenseNot gradedqualityBmaintenanceEnables token-efficient browser automation for AI chats like ChatGPT, Gemini, and Claude, allowing reading responses, sending messages, waiting for streaming replies, and bridging conversations between tabs via Chrome DevTools Protocol.3MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to control Chrome browser for tab management, content extraction, and browser interactions via REST API.1GPL 3.0
Related MCP Connectors
Read-only bank access for your AI agent. Connects Claude, ChatGPT, Cursor, Gemini, Codex.
Let ChatGPT, Claude & Cursor use your Mac: email, calendar, iMessage, Teams, files. Local, free.
Give your agent live data from Twitter, Reddit, the web and GitHub. No API keys, no scraping stack.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/komaksym/chrome-browser-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server