Chrome Live MCP
Allows MCP agents to connect to an already-running Google Chrome browser and control tabs, navigate pages, capture screenshots, perform pointer and keyboard actions, and scroll page content without launching a second browser.
Click on "Deploy 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 Live MCPTake a screenshot of the current tab and describe what it shows."
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 Live MCP
Connect any local stdio MCP agent to the Chrome you already use—including its signed-in sessions, cookies, tabs, and extensions environment—without launching a second browser.
Chrome Live MCP is an independent implementation. It does not install, import, launch, or wrap chrome-devtools-mcp.
Requirements
Google Chrome 144 or newer
Node.js 20 or newer
A desktop agent that supports local MCP servers over stdio
Related MCP server: chrome-mcp
One-time Chrome setup
Update Chrome to version 144 or newer.
Open
chrome://inspect/#remote-debuggingin Chrome.Enable remote debugging and leave Chrome running.
Chrome remains in control of authorization. If Chrome asks whether to allow a connection, review the prompt and choose Allow.
Selecting an automation target is background-only: connecting or calling browser_select_tab does not activate that tab or steal focus from your current Chrome work.
ZCode
Open Settings → MCP Servers → New MCP Server, then enter:
Scope:
UserType:
stdioName:
chrome-liveCommand:
npxArguments:
-y chrome-live-mcp@latest
Enable the entry and start a new ZCode task. See ZCODE_TESTING.md for the exact smoke test.
Kimi Code CLI
kimi mcp add --transport stdio chrome-live -- npx -y chrome-live-mcp@latest
kimi mcp test chrome-liveFor any other MCP client, use this standard configuration:
{
"mcpServers": {
"chrome-live": {
"command": "npx",
"args": ["-y", "chrome-live-mcp@latest"]
}
}
}Local development
npm install
npm test
npm run typecheck
npm run bundle --workspace chrome-live-mcp
node packages/cli/dist/main.js doctorTo test a local checkout in an MCP client, replace the npx configuration with:
{
"command": "node",
"args": ["/absolute/path/to/chrome-live-mcp/packages/cli/dist/main.js", "serve"]
}Tools and safety
The server provides connection, tab, semantic snapshot, screenshot, pointer, keyboard, form selection, page and referenced-container scrolling, navigation, and waiting tools. browser_scroll_to can move an internal list or panel directly to its top or bottom. It intentionally does not expose arbitrary JavaScript evaluation, raw CDP, cookies, storage, passwords, or authorization headers.
Only one Chrome Live MCP process controls Chrome at a time. All protocol traffic uses stdin/stdout; the server opens no listening network port. Page content is untrusted, and consequential actions should remain subject to the invoking agent's approval policy.
Status
The initial compatibility targets are ZCode Desktop, ZCode CLI, Kimi Code CLI, Claude Code, Cursor, and other conforming local stdio MCP clients. Compatibility means the client can launch a local command and implement standard MCP initialize, tools/list, and tools/call; cloud-only clients are outside this scope.
License
MIT
This server cannot be deployed
Maintenance
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.
Automate cloud Chrome—navigate, click, type, screenshot, run code, record screen video
Browserless MCP — wraps the Browserless headless-Chromium REST API (browserless.io)
Related MCP Servers
- AlicenseAqualityDmaintenanceConnects to a running Chrome instance via CDP to expose browser control as MCP tools, preserving login state, cookies, and extensions for automation.199 npmMIT
- AlicenseNot gradedqualityBmaintenanceLocal MCP server for persistent Chrome automation with multi-profile support, enabling tab management, page inspection, element interaction, JavaScript evaluation, and screenshots while preserving login sessions across restarts.107 npm3MIT
- FlicenseNot gradedqualityBmaintenanceEnables MCP clients to drive individually named Chrome profiles, providing tools for tabs, navigation, page interaction, screenshots, JavaScript evaluation, console logs, and network inspection over stdio without a TCP port.-
- AlicenseNot gradedqualityAmaintenanceEnables MCP clients to drive a live Chrome or Brave browser over stdio, with tools for navigation, clicking, typing, screenshots, and executing automation goals.2MIT