Source profileQuality 64/100Review permissions

shaun0927/openchrome/skills/openchrome/SKILL.md

openchrome

OpenChrome browser automation skill. Use when the user asks to navigate, click, read, screenshot, crawl, or automate anything in a real Chrome browser. Covers parallel lanes, authenticated scraping, outcome contracts, and skill replay.

Source repository stars
227
Declared platforms
0
Static risk flags
1
Last source update
2026-07-28
Source checked
2026-07-28

Decision brief

What it does—and where it fits

OpenChrome is an MCP server that controls your real, already-logged-in Chrome through the CDP. It wraps the browser API with a hint engine, circuit breaker, auto-recovery runtime, and token-efficient page serialization.

Best for

  • Use when the user asks to navigate, click, read, screenshot, crawl, or automate anything in a real Chrome browser.

Not for

  • Tasks that require unconfirmed production actions or broad system permissions.
  • Environments where the pinned source and install steps cannot be inspected.

Compatibility matrix

Platform support, with evidence labels

PlatformStatusEvidenceWhat to check
CodexNot declaredNo explicit evidencePortability before use
Claude CodeNot declaredNo explicit evidencePortability before use
CursorNot declaredNo explicit evidencePortability before use
Gemini CLINot declaredNo explicit evidencePortability before use
Open the compatibility checker

Installation

Inspect first. Install second.

The source command is displayed only when detected. A safe inspection prompt is always available so your agent can explain every action before execution.

Source-detected install commandSource
npx skills add https://github.com/shaun0927/openchrome --skill "skills/openchrome"
Safe inspection promptEditorial

Inspect the Agent Skill "openchrome" from https://github.com/shaun0927/openchrome/blob/04abbddeec84b3fb36282cbff80bb7865dce435f/skills/openchrome/SKILL.md at commit 04abbddeec84b3fb36282cbff80bb7865dce435f. List every install step, command, network request, credential, file read/write, external action, and rollback step. Explain whether it fits my task. Do not install or execute anything until I approve.

Workflow

What the source asks the agent to do

  1. 01

    Setup

    Restart your MCP client. Chrome auto-launches on the first tool call.

    Restart your MCP client. Chrome auto-launches on the first tool call.
  2. 02

    What you can do

    Navigate — navigate url= opens a URL in a managed tab.

    Navigate — navigate url= opens a URL in a managed tab.Read — readpage mode=dom returns a compact, 5–15x token-cheaperInteract — interact, fillform, forminput, act for clicking,
  3. 03

    First tool by intent

    Use this as the short routing card. The full catalogue remains in docs/agent/capability-map.md.

    You need a deterministic browser script without an MCP host agent: useThe user explicitly asks for a platform API or CLI: use that external tool.The next step is irreversible: get the host/user confirmation gate first.
  4. 04

    Key tools

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

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

Permission review

Static risk signals and limitations

Runs scripts

medium · line 32

The documentation asks the agent to run terminal commands or scripts.

npm install -g openchrome-mcp

Evidence record

Why each signal appears

EvidenceSourceComputedTestedEditorial
SignalValueEvidence typeMeaning
Quality score64/100ComputedDocumentation, specificity, maintenance, and trust rules
Repository stars227SourceRepository attention, not individual Skill quality
Compatibility0 platformsSourceDeclared in the catalog source record
Usage guideautomated source guideEditorialGenerated or reviewed according to the visible evidence level

Pinned source

Provenance and original SKILL.md

Repository
shaun0927/openchrome
Skill path
skills/openchrome/SKILL.md
Commit
04abbddeec84b3fb36282cbff80bb7865dce435f
License
MIT
Collected
2026-07-28
Default branch
main
View the original SKILL.md

OpenChrome

OpenChrome is an MCP server that controls your real, already-logged-in Chrome through the CDP. It wraps the browser API with a hint engine, circuit breaker, auto-recovery runtime, and token-efficient page serialization.

What you can do

  • Navigatenavigate url=<url> opens a URL in a managed tab.
  • Readread_page mode=dom returns a compact, ~5–15x token-cheaper serialization of the page. Use ref_N handles in follow-up actions.
  • Interactinteract, fill_form, form_input, act for clicking, typing, and high-level actions.
  • Screenshotcomputer returns a screenshot of the current viewport.
  • Parallel lanes — open multiple tabs with oc_lane_create; work them concurrently with the same Chrome session and existing cookies.
  • Outcome contractsoc_assert checks page state against a JSON contract (url equals, dom_count ≥ N, dom_text contains …) and returns pass / fail / inconclusive without guessing.
  • Skillsoc_skill_record / oc_skill_recall store and replay procedural memory across sessions.
  • Crawling — async crawl_start / crawl_status / crawl_cancel with cursor pagination.

Setup

npm install -g openchrome-mcp
openchrome setup               # Claude Code
openchrome setup --client codex   # Codex CLI

Restart your MCP client. Chrome auto-launches on the first tool call.

First tool by intent

Use this as the short routing card. The full catalogue remains in docs/agent/capability-map.md.

IntentStart withFallbackVerify with
Open a URLnavigatetabs_createread_page
Read page factsread_page mode=dominspect / query_domoc_assert
Find action targetsoc_observefind / oc_queryinspect
Click or typeinteractcomputeroc_assert
Verify successoc_assertvalidate_pageoc_evidence_bundle
Capture evidenceoc_evidence_bundlepage_screenshotoc_diff
Debug a broken pagevalidate_pageconsole_captureoc_evidence_bundle
Crawl or run background workcrawl_startcrawl_status / crawl_canceloc_assert
Repair runtime setupopenchrome doctoroc_doctor_reportopenchrome check

Default loop: navigateread_page / oc_observeinteractoc_assertoc_evidence_bundle if the result is uncertain.

Use something else when:

  • You need a deterministic browser script without an MCP host agent: use Playwright or Puppeteer.
  • The user explicitly asks for a platform API or CLI: use that external tool.
  • The next step is irreversible: get the host/user confirmation gate first.

Key tools

ToolPurpose
navigateOpen a URL
read_pageRead page content (dom / markdown / screenshot)
interactClick / type on an element
oc_assertVerify page state against a contract
oc_lane_createOpen a parallel tab lane
oc_skill_recordStore a reusable step sequence
oc_skill_recallRetrieve steps for a domain
crawl_startStart an async crawl job
oc_evidence_bundleSnapshot DOM + screenshot + network + console
oc_diffCompare two evidence bundles

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

Alternatives

Compare before choosing