Skip to content

Commit a106fba

Browse files
authored
docs: update auto-connect docs (#779)
Refs #775
1 parent 49c7ac4 commit a106fba

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

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

372372
- **`--autoConnect`/ `--auto-connect`**
373-
If specified, automatically connects to a browser (Chrome 145+) running in the user data directory identified by the channel param. Requires remote debugging being enabled in Chrome here: chrome://inspect/#remote-debugging.
373+
If specified, automatically connects to a browser (Chrome 144+) running in the user data directory identified by the channel param. Requires the remoted debugging server to be started in the Chrome instance via chrome://inspect/#remote-debugging.
374374
- **Type:** boolean
375375
- **Default:** `false`
376376

src/cli.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const cliOptions = {
1111
autoConnect: {
1212
type: 'boolean',
1313
description:
14-
'If specified, automatically connects to a browser (Chrome 145+) running in the user data directory identified by the channel param. Requires remote debugging being enabled in Chrome here: chrome://inspect/#remote-debugging.',
14+
'If specified, automatically connects to a browser (Chrome 144+) running in the user data directory identified by the channel param. Requires the remoted debugging server to be started in the Chrome instance via chrome://inspect/#remote-debugging.',
1515
conflicts: ['isolated', 'executablePath'],
1616
default: false,
1717
coerce: (value: boolean | undefined) => {
@@ -267,11 +267,11 @@ export function parseArguments(version: string, argv = process.argv) {
267267
],
268268
[
269269
'$0 --auto-connect',
270-
'Connect to a stable Chrome instance (Chrome 145+) running instead of launching a new instance',
270+
'Connect to a stable Chrome instance (Chrome 144+) running instead of launching a new instance',
271271
],
272272
[
273273
'$0 --auto-connect --channel=canary',
274-
'Connect to a canary Chrome instance (Chrome 145+) running instead of launching a new instance',
274+
'Connect to a canary Chrome instance (Chrome 144+) running instead of launching a new instance',
275275
],
276276
]);
277277

0 commit comments

Comments
 (0)