Skip to content
Draft
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
2 changes: 1 addition & 1 deletion src/bin/cliDefinitions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,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
2 changes: 1 addition & 1 deletion src/third_party/LIGHTHOUSE_MCP_BUNDLE_THIRD_PARTY_NOTICES
Original file line number Diff line number Diff line change
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.24.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