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
6 changes: 3 additions & 3 deletions docs/tool-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@

### `performance_analyze_insight`

**Description:** Provides more detailed information on a specific Performance Insight that was highlighed in the results of a trace recording
**Description:** Provides more detailed information on a specific Performance Insight that was highlighed in the results of a trace recording.

**Parameters:**

Expand All @@ -229,7 +229,7 @@

### `performance_start_trace`

**Description:** Starts a performance trace recording
**Description:** Starts a performance trace recording on the selected page.

**Parameters:**

Expand All @@ -240,7 +240,7 @@

### `performance_stop_trace`

**Description:** Stops the active performance trace recording
**Description:** Stops the active performance trace recording on the selected page.

**Parameters:** None

Expand Down
7 changes: 4 additions & 3 deletions src/tools/performance.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import {ToolCategories} from './categories.js';

export const startTrace = defineTool({
name: 'performance_start_trace',
description: 'Starts a performance trace recording',
description: 'Starts a performance trace recording on the selected page.',
annotations: {
category: ToolCategories.PERFORMANCE,
readOnlyHint: true,
Expand Down Expand Up @@ -98,7 +98,8 @@ export const startTrace = defineTool({

export const stopTrace = defineTool({
name: 'performance_stop_trace',
description: 'Stops the active performance trace recording',
description:
'Stops the active performance trace recording on the selected page.',
annotations: {
category: ToolCategories.PERFORMANCE,
readOnlyHint: true,
Expand All @@ -116,7 +117,7 @@ export const stopTrace = defineTool({
export const analyzeInsight = defineTool({
name: 'performance_analyze_insight',
description:
'Provides more detailed information on a specific Performance Insight that was highlighed in the results of a trace recording',
'Provides more detailed information on a specific Performance Insight that was highlighed in the results of a trace recording.',
annotations: {
category: ToolCategories.PERFORMANCE,
readOnlyHint: true,
Expand Down
Loading