Chrome MCP
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., "@Chrome MCPOpen a new tab, go to example.com, and take a screenshot"
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 MCP
Chrome MCP exposes real Chrome tabs to Model Context Protocol clients without copying browser sessions into another engine. The Chrome extension controls tabs in the user's existing profile through chrome.debugger, while a persistent local daemon coordinates one or more Chrome profiles and MCP processes.
Architecture
MCP client ──stdio── MCP bridge ──authenticated HTTP── persistent daemon
│
├── WebSocket ── Chrome extension/profile A ── tabs
└── WebSocket ── Chrome extension/profile B ── tabsTabs are browser sessions. Closing a session closes its Chrome tab.
Each extension installation represents one Chrome profile/instance.
The daemon assigns global numeric
session_idvalues across every connected instance.The daemon persists independently of MCP client restarts and has no tray icon.
Actions use Chrome DevTools Protocol through
chrome.debugger, so evaluated JavaScript is not blocked by page CSP.Authentication state, cookies, IndexedDB, service workers, certificates, extensions, and browser fingerprint remain in the original Chrome profile because no session migration is required.
Related MCP server: monkeysee
Install
Chrome 116 or newer is required.
bun installLoad the extension in every Chrome profile that should be available:
Open
chrome://extensions.Enable Developer mode.
Choose Load unpacked.
Select this repository's
extensiondirectory.Open the extension popup, give the instance a recognizable name, and select Use as default when appropriate.
Chrome must be able to reach ws://127.0.0.1:55333. The daemon accepts extension WebSockets only from chrome-extension:// origins and binds only to localhost.
MCP client configuration
{
"mcpServers": {
"chrome": {
"command": "bunx",
"args": ["-y", "@cypherpotato/chrome-mcp", "--mcp"]
}
}
}For a local checkout after bun link, point the MCP configuration directly at the linked executable rather than using bunx:
{
"command": "C:\\Users\\<user>\\.bun\\bin\\chrome-mcp-electron",
"args": ["--mcp"]
}CLI
chrome-mcp-electron --mcp
chrome-mcp-electron --daemon
chrome-mcp-electron --status
chrome-mcp-electron --stop-daemon
chrome-mcp-electron --help--mcp starts the daemon in the background when necessary and then serves MCP over stdio. Closing the MCP process does not stop the daemon or disconnect Chrome extensions.
Tools
The public tool names and input schemas match Browser MCP:
browser_toggle_sessionbrowser_import_sessionbrowser_run_actionsbrowser_get_context
browser_toggle_session({ "action": "start" }) opens a tab in the default Chrome instance. When multiple instances are connected, choose the default in the extension popup. Existing tabs reported by the extensions also receive session_id values and can be controlled directly.
browser_get_context lists all connected instances and their tabs. URLs are returned without query strings.
Multiple Chrome instances and profiles
Install the unpacked extension separately in every profile. Each installation creates a stable random instance ID stored in that profile and reconnects to the daemon automatically. Instance names do not need to be unique, but distinct names are recommended.
The daemon reconciles tabs after extension or service-worker restarts. A session remains addressable while its owning extension is connected and the tab still exists.
Capabilities
browser_run_actions supports the same browser helper surface as Browser MCP:
snapshots and JavaScript evaluation;
click, right-click, hover, drag, scroll, and typing;
navigation;
screenshots;
console and network logs;
network request details and response bodies when Chrome still retains them;
responsive viewport emulation and color-scheme emulation;
JavaScript alert, confirm, and prompt handling.
Limitations
Chrome allows only one debugger attachment per tab. Close DevTools before controlling that tab. Opening DevTools can detach the extension.
Chrome internal pages, extension pages, the Chrome Web Store, and other restricted schemes cannot be controlled or exposed as agent sessions.
The extension must be installed in each profile; one profile cannot inspect another profile's tabs.
The debugger permission displays a Chrome warning while a tab is attached.
Response bodies can expire from Chrome's network buffer.
Native touch input and browser-internal download CDP APIs are not exposed through
chrome.debugger.
Development
bun run check
bun run testThe test suite uses mock extension WebSocket clients to validate persistent daemon lifecycle, authentication, tab/session reconciliation, multiple instances, default-instance selection, action routing, and reconnect behavior without opening Chrome.
The internal protocol is documented in docs/protocol.md.
This 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
- AlicenseNot gradedqualityCmaintenanceEnables MCP clients to control and interact with the user's real Chrome browser session, leveraging existing logins, cookies, and extensions for AI-driven automation.5MIT
- AlicenseNot gradedqualityBmaintenanceEnables MCP clients to drive a real, logged-in Chrome browser for web automation tasks like navigation, clicking, typing, and screenshotting.11MIT
- AlicenseNot gradedqualityCmaintenanceEnables browser automation over MCP using a real Chrome browser with existing profile, supporting real tabs, downloads, cookies, and RPA workflows.104MIT
- AlicenseNot gradedqualityBmaintenanceEnables coding agents to control and inspect a live Chrome browser via MCP, providing Chrome DevTools capabilities for automation, debugging, and performance analysis.3,288,165Apache 2.0
Related MCP Connectors
Hosted real Google Chrome MCP with per-user persistent state. Navigate, click, type, screenshot.
Browser MCP for logged-in tasks. Uses your Chrome — credentials stay local. Zero-token replay.
Live browser debugging for AI assistants — DOM, console, network via MCP.
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/CypherPotato/chrome-use-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server