You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/cli.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -17,7 +17,7 @@ The CLI acts as a client to a background `chrome-devtools-mcp` daemon (uses Unix
17
17
18
18
-**Automatic Start**: The first time you call a tool (e.g., `list_pages`), the CLI automatically starts the MCP server and the browser in the background if they aren't already running.
19
19
-**Persistence**: The same background instance is reused for subsequent commands, preserving the browser state (open pages, cookies, etc.).
20
-
-**Manual Control**: You can explicitly manage the background process using `start`, `stop`, and `status`. The `start` command forwards all subsequent arguments to the underlying MCP server (e.g., `--headless`, `--userDataDir`).
20
+
-**Manual Control**: You can explicitly manage the background process using `start`, `stop`, and `status`. The `start` command forwards all subsequent arguments to the underlying MCP server (e.g., `--headless`, `--userDataDir`) but not all args are supported. Run `chrome-devtools start --help` for supported args. Headless and isolated are enabled by default.
@@ -348,7 +348,7 @@ so returned values have to be JSON-serializable.
348
348
349
349
### `lighthouse_audit`
350
350
351
-
**Description:** Get Lighthouse score and reports for accessibility, SEO and best practices.
351
+
**Description:** Get Lighthouse score and reports for accessibility, SEO and best practices. This excludes performance. For performance audits, run [`performance_start_trace`](#performance_start_trace)
'Get Lighthouse score and reports for accessibility, SEO and best practices.',
290
+
'Get Lighthouse score and reports for accessibility, SEO and best practices. This excludes performance. For performance audits, run performance_start_trace',
'Starts a performance trace recording on the selected page. This can be used to look for performance problems and insights to improve the performance of the page. It will also report Core Web Vital (CWV) scores for the page.',
501
+
'Start a performance trace on the selected webpage. Use to find frontend performance issues, Core Web Vitals (LCP, INP, CLS), and improve page load speed.',
500
502
category: 'Performance',
501
503
args: {
502
504
reload: {
503
505
name: 'reload',
504
506
type: 'boolean',
505
507
description:
506
508
'Determines if, once tracing has started, the current selected page should be automatically reloaded. Navigate the page to the right URL using the navigate_page tool BEFORE starting the trace if reload or autoStop is set to true.',
507
-
required: true,
509
+
required: false,
510
+
default: true,
508
511
},
509
512
autoStop: {
510
513
name: 'autoStop',
511
514
type: 'boolean',
512
515
description:
513
516
'Determines if the trace recording should be automatically stopped.',
0 commit comments