Skip to content

Commit 05cf8cb

Browse files
docs: clarify browser-url parameter in README (#613)
Fixes #609 --------- Co-authored-by: Paul Irish <paulirish@users.noreply.github.com>
1 parent 39e68fa commit 05cf8cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ The Chrome DevTools MCP server supports the following configuration option:
322322
<!-- BEGIN AUTO GENERATED OPTIONS -->
323323

324324
- **`--browserUrl`, `-u`**
325-
Connect to a running Chrome instance using port forwarding. For more details see: https://developer.chrome.com/docs/devtools/remote-debugging/local-server.
325+
Connect to a running, debuggable Chrome instance (e.g. `http://127.0.0.1:9222`). For more details see: https://github.com/ChromeDevTools/chrome-devtools-mcp#connecting-to-a-running-chrome-instance.
326326
- **Type:** string
327327

328328
- **`--wsEndpoint`, `-w`**

src/cli.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const cliOptions = {
1111
browserUrl: {
1212
type: 'string',
1313
description:
14-
'Connect to a running Chrome instance using port forwarding. For more details see: https://developer.chrome.com/docs/devtools/remote-debugging/local-server.',
14+
'Connect to a running, debuggable Chrome instance (e.g. `http://127.0.0.1:9222`). For more details see: https://github.com/ChromeDevTools/chrome-devtools-mcp#connecting-to-a-running-chrome-instance.',
1515
alias: 'u',
1616
conflicts: 'wsEndpoint',
1717
coerce: (url: string | undefined) => {

0 commit comments

Comments
 (0)