Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tool-reference.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<!-- AUTO GENERATED DO NOT EDIT - run 'npm run gen' to update-->

# Chrome DevTools MCP Tool Reference (~7005 cl100k_base tokens)
# Chrome DevTools MCP Tool Reference (~7010 cl100k_base tokens)

- **[Input automation](#input-automation)** (9 tools)
- [`click`](#click)
Expand Down Expand Up @@ -346,7 +346,7 @@ so returned values have to be JSON-serializable.

### `lighthouse_audit`

**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)
**Description:** Get Lighthouse score and reports for accessibility, SEO, best practices, and agentic browsing. This excludes performance. For performance audits, run [`performance_start_trace`](#performance_start_trace)

**Parameters:**

Expand Down
79 changes: 49 additions & 30 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.0.0",
"lighthouse": "13.1.0",
"lighthouse": "13.2.0",
"prettier": "^3.6.2",
"puppeteer": "24.42.0",
"rollup": "4.60.2",
Expand Down
2 changes: 1 addition & 1 deletion src/bin/chrome-devtools-cli-options.ts
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ export const commands: Commands = {
},
lighthouse_audit: {
description:
'Get Lighthouse score and reports for accessibility, SEO and best practices. This excludes performance. For performance audits, run performance_start_trace',
'Get Lighthouse score and reports for accessibility, SEO, best practices, and agentic browsing. This excludes performance. For performance audits, run performance_start_trace',
category: 'Debugging',
args: {
mode: {
Expand Down
10 changes: 5 additions & 5 deletions src/third_party/LIGHTHOUSE_MCP_BUNDLE_THIRD_PARTY_NOTICES
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ SOFTWARE.

Name: axe-core
URL: https://www.deque.com/axe/
Version: 4.11.2
Version: 4.11.4
License: MPL-2.0

Mozilla Public License, version 2.0
Expand Down Expand Up @@ -1556,7 +1556,7 @@ SOFTWARE.

Name: puppeteer-core
URL: https://github.com/puppeteer/puppeteer/tree/main/packages/puppeteer-core
Version: 24.40.0
Version: 24.42.0
License: Apache-2.0

-------------------- DEPENDENCY DIVIDER --------------------
Expand Down Expand Up @@ -1622,7 +1622,7 @@ SOFTWARE.

Name: tldts-core
URL: https://github.com/remusao/tldts#readme
Version: 7.0.27
Version: 7.0.29
License: MIT

Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
Expand All @@ -1644,7 +1644,7 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTH

Name: tldts-icann
URL: https://github.com/remusao/tldts#readme
Version: 7.0.27
Version: 7.0.29
License: MIT

Copyright (c) 2017 Thomas Parisot, 2018 Rémi Berson
Expand Down Expand Up @@ -1686,7 +1686,7 @@ PERFORMANCE OF THIS SOFTWARE.

Name: web-features
URL: git+https://github.com/web-platform-dx/web-features.git
Version: 3.21.0
Version: 3.25.0
License: Apache-2.0

Apache License
Expand Down
7 changes: 5 additions & 2 deletions src/third_party/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -59,16 +59,19 @@ import {
snapshot as snapshotImpl,
navigation as navigationImpl,
generateReport as generateReportImpl,
agenticBrowsingConfig as agenticBrowsingConfigImpl,
} from './lighthouse-devtools-mcp-bundle.js';

export const agenticBrowsingConfig = agenticBrowsingConfigImpl;

export const snapshot = snapshotImpl as (
page: Page,
options: {flags?: Flags},
options: {flags?: Flags; config?: object},
) => Promise<RunnerResult>;
export const navigation = navigationImpl as (
page: Page,
url: string,
options: {flags?: Flags},
options: {flags?: Flags; config?: object},
) => Promise<RunnerResult>;
export const generateReport = generateReportImpl as (
lhr: Result,
Expand Down
Loading