File tree Expand file tree Collapse file tree 2 files changed +17
-4
lines changed
Expand file tree Collapse file tree 2 files changed +17
-4
lines changed Original file line number Diff line number Diff 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)
Original file line number Diff line number Diff line change 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)
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 `
You can’t perform that action at this time.
0 commit comments