Skip to content
Merged
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 (~6940 cl100k_base tokens)
# Chrome DevTools MCP Tool Reference (~6949 cl100k_base tokens)

- **[Input automation](#input-automation)** (9 tools)
- [`click`](#click)
Expand Down Expand Up @@ -278,7 +278,7 @@

### `take_memory_snapshot`

**Description:** Capture a memory heapsnapshot of the currently selected page to memory leak debugging
**Description:** Capture a heap snapshot of the currently selected page. Use to analyze the memory distribution of JavaScript objects and debug memory leaks.

**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 @@ -582,7 +582,7 @@ export const commands: Commands = {
},
take_memory_snapshot: {
description:
'Capture a memory heapsnapshot of the currently selected page to memory leak debugging',
'Capture a heap snapshot of the currently selected page. Use to analyze the memory distribution of JavaScript objects and debug memory leaks.',
category: 'Performance',
args: {
filePath: {
Expand Down
2 changes: 1 addition & 1 deletion src/tools/memory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {definePageTool} from './ToolDefinition.js';

export const takeMemorySnapshot = definePageTool({
name: 'take_memory_snapshot',
description: `Capture a memory heapsnapshot of the currently selected page to memory leak debugging`,
description: `Capture a heap snapshot of the currently selected page. Use to analyze the memory distribution of JavaScript objects and debug memory leaks.`,
annotations: {
category: ToolCategory.PERFORMANCE,
readOnlyHint: false,
Expand Down
Loading