@whfzgyx/chrome-devtools-cli
v1.2.2
Published
Collaboration-first CLI for Chrome DevTools and Playwright
Downloads
216
Readme
chrome-devtools-cli
chrome-devtools-cli is a collaboration-first terminal interface for controlling an existing Chrome session or a managed Chromium session.
It adds a CLI product layer on top of the internal DevTools/MCP runtime in this repository:
- attach to an already running browser with login state
- reuse the same session across multiple shells
- bind a stable tab with
handoff/use-tab - run Playwright scripts against the shared browser/tab
- keep access to the underlying DevTools tool surface when needed
Install
npm install -g @whfzgyx/chrome-devtools-cliAvailable commands:
chrome-devtools-clichrome-devtools
Quick Start
Start a managed browser:
chrome-devtools-cli start
chrome-devtools-cli status
chrome-devtools-cli tabsAttach to an existing Chrome started with remote debugging:
chrome-devtools-cli attach --browserUrl http://127.0.0.1:9222
chrome-devtools-cli tabs
chrome-devtools-cli handoff --current-tabBind a specific tab and run Playwright:
chrome-devtools-cli use-tab --title "Dashboard"
chrome-devtools-cli playwright --script 'async ({page}) => ({title: await page.title(), url: page.url()})'Stop the shared session:
chrome-devtools-cli stopMain Commands
start: launch a managed browser sessionattach: connect to an existing debuggable browserstatus: show daemon/session metadatastop: stop the current session and clear persisted statetabs: list available tabs in the current sessionhandoff: bind the currently selected tab into session stateuse-tab: rebind bypageId,title, orurlplaywright: run an inline or file-based Playwright script in the shared browser session
The CLI also exposes the migrated DevTools tool commands such as list_pages, navigate_page, take_screenshot, evaluate_script, performance_*, and more.
What Is CLI-Specific In This Repo
These files are the main chrome-devtools-cli-specific product layer:
src/bin/chrome-devtools.tssrc/daemon/state.tssrc/session/reuse.tssrc/browser-endpoint.tssrc/playwright/runner.tssrc/playwright/script-loader.tstests/e2e/chrome-devtools-session-reuse.test.tstests/e2e/chrome-devtools-collaboration-state.test.tstests/e2e/chrome-devtools-recovery.test.ts
What Still Uses mcp Internally
Some files still keep mcp naming because the current CLI daemon still launches the internal DevTools/MCP server layer rather than reimplementing it:
src/bin/chrome-devtools-mcp.tssrc/bin/chrome-devtools-mcp-main.tssrc/bin/chrome-devtools-mcp-cli-options.tssrc/index.ts- most files under
src/tools - most files under
src/formatters
Those are not just leftover docs or aliases; they are still runtime support and should not be deleted yet.
Docs
CLI-specific usage is in docs/cli.md.
