Skip to main content
Glama
wankaiyi
by wankaiyi

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: Pagerunner

One-time Chrome setup

  1. Update Chrome to version 144 or newer.

  2. Open chrome://inspect/#remote-debugging in Chrome.

  3. 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: User

  • Type: stdio

  • Name: chrome-live

  • Command: npx

  • Arguments: -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-live

For 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 doctor

To 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

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

  • F
    license
    Not graded
    quality
    B
    maintenance
    A Chrome browser automation MCP server. Connect Claude (or any MCP client) to a real Chrome session — using your existing profiles with their cookies, saved passwords, and history.
    3
  • A
    license
    Not graded
    quality
    B
    maintenance
    Local 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.
    180
    1
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    MCP server that lets agents drive your real Chrome browser with existing logins and sessions via an outbound-only WebSocket extension. It exposes Playwright-compatible browser tools for navigation, clicking, typing, and snapshots.
    Apache 2.0

View all related MCP servers

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.

  • Stealth web browser for agents: search, fetch, click, download and type in persistent MCP sessions.

View all MCP Connectors

Latest Blog Posts

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/wankaiyi/chrome-live-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server