← Discover MCPs and Agents
o
MCPAI & MLGitHub

openchrome

Open-source browser automation MCP server. Control your real Chrome from any AI agent.

Links

README

From the repo.

OpenChrome

OpenChrome is a browser automation MCP server for controlling a real Chrome browser from Claude Code, Codex CLI, OpenCode, or any MCP client.

It ships as a Node CLI plus MCP runtime. Desktop apps, browser extensions, native-host installers, deployment templates, and release artifact builders are outside this repository surface.

Install

Requires Node.js 20 or newer.

npm install -g openchrome-mcp
openchrome setup --client codex

For Claude Code:

openchrome setup --client claude

Restart the MCP host after setup so it reloads the generated configuration.

Run

openchrome serve --auto-launch --auto-elect --minimal

Manual Codex CLI configuration:

openchrome config --client codex

Add the printed [mcp_servers.openchrome] block to ~/.codex/config.toml.

CLI

OpenChrome can call its MCP tools directly from the shell:

oc run navigate --arg url=https://example.com
oc run read_page --arg mode=dom --json
oc navigate https://example.com
oc click ref_5

Playbooks run deterministic YAML scenarios:

oc playbook run scenario.yaml --vars url=https://iana.org --out report.md

HTTP Mode

Run a long-lived MCP HTTP daemon when multiple clients should share one managed Chrome owner:

openchrome serve --http 3100 --auth-token <token> --idle-timeout 30m
curl -s http://127.0.0.1:3100/health

Independent stdio clients should use separate --port and --user-data-dir profiles, or connect through broker mode with --auto-elect.

Both stdio and HTTP serve the stateless MCP 2026-07-28 revision alongside legacy initialize-based clients; see docs/mcp-2026-07-28.md.

Capabilities

  • Real Chrome control through CDP.
  • Navigation, clicks, typing, screenshots, DOM reads, accessibility reads, and natural-language element lookup.
  • Parallel tab/session workflows with broker-safe profile ownership.
  • Compact page serialization for lower-token agent loops.
  • Outcome contracts, evidence bundles, diffs, and diagnostics.
  • Optional pilot-tier recovery and skill runtime behind --pilot.

Full tool catalogue: docs/agent/capability-map.md.

Documentation

TopicLink
Architecturedocs/architecture.md
Getting starteddocs/getting-started.md
CLIdocs/cli.md
Playbooksdocs/cli/playbook.md
MCP topologiesdocs/mcp/topologies.md
MCP 2026-07-28 supportdocs/mcp-2026-07-28.md
HTTP daemondocs/getting-started/http-daemon.md
Security modelSECURITY.md
Repository structuredocs/dev/project-structure.md

Development

git clone https://github.com/shaun0927/openchrome.git
cd openchrome
npm install
npm run build
npm test

Useful checks:

npm run lint
npm run lint:repo-structure
npm run lint:tier
npm run docs:capability-map:check

License

MIT

Collected info

  • 231 stars
  • 40 forks
  • Language: TypeScript
  • Source updated: 8/4/2026

Config for your environment

Replace {MCP_ENDPOINT_URL} with this MCP’s endpoint URL (from its repo or docs above). No API key — you connect directly.

Tool

OS

Config file: ~/.cursor/mcp.json

{
  "mcpServers": {
    "mcp-server": {
      "url": "{MCP_ENDPOINT_URL}"
    }
  }
}

Paste into mcpServers in the config file. Restart Cursor after saving.

If this MCP is also published on mcpchannel.ai, you can subscribe from Browse and use the gateway config there instead.