Skip to content

Commit f7ef243

Browse files
committed
generate docs
1 parent 0f0faf8 commit f7ef243

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,8 @@ claude mcp add chrome-devtools npx chrome-devtools-mcp@latest
116116
- [`emulate_cpu`](docs/tool-reference.md#emulate_cpu)
117117
- [`emulate_network`](docs/tool-reference.md#emulate_network)
118118
- [`resize_page`](docs/tool-reference.md#resize_page)
119-
- **Performance** (2 tools)
119+
- **Performance** (3 tools)
120+
- [`performance_analyze_insight`](docs/tool-reference.md#performance_analyze_insight)
120121
- [`performance_start_trace`](docs/tool-reference.md#performance_start_trace)
121122
- [`performance_stop_trace`](docs/tool-reference.md#performance_stop_trace)
122123
- **Network** (2 tools)

docs/tool-reference.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@
2222
- [`emulate_cpu`](#emulate_cpu)
2323
- [`emulate_network`](#emulate_network)
2424
- [`resize_page`](#resize_page)
25-
- **[Performance](#performance)** (2 tools)
25+
- **[Performance](#performance)** (3 tools)
26+
- [`performance_analyze_insight`](#performance_analyze_insight)
2627
- [`performance_start_trace`](#performance_start_trace)
2728
- [`performance_stop_trace`](#performance_stop_trace)
2829
- **[Network](#network)** (2 tools)
@@ -216,6 +217,16 @@
216217

217218
## Performance
218219

220+
### `performance_analyze_insight`
221+
222+
**Description:** Provides more detailed information on a specific Performance Insight that was highlighed in the results of a trace recording
223+
224+
**Parameters:**
225+
226+
- **insightName** (string) **(required)**: The name of the Insight you want more information on. For example: "DocumentLatency" or "LCPBreakdown"
227+
228+
---
229+
219230
### `performance_start_trace`
220231

221232
**Description:** Starts a performance trace recording
@@ -266,15 +277,16 @@ so returned values have to JSON-serializable.
266277

267278
- **args** (array) _(optional)_: An optional list of arguments to pass to the function.
268279
- **function** (string) **(required)**: A JavaScript function to run in the currently selected page.
269-
Example without arguments: `() => {
280+
Example without arguments: `() => {
270281
return document.title
271282
}` or `async () => {
272283
return await fetch("example.com")
273284
}`.
274-
Example with arguments: `(el) => {
285+
Example with arguments: `(el) => {
275286
return el.innerText;
276287
}`
277288

289+
278290
---
279291

280292
### `list_console_messages`

0 commit comments

Comments
 (0)