Skip to content

Commit e0b314f

Browse files
fix
1 parent 15307fb commit e0b314f

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

docs/tool-reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!-- AUTO GENERATED DO NOT EDIT - run 'npm run gen' to update-->
22

3-
# Chrome DevTools MCP Tool Reference (~6963 cl100k_base tokens)
3+
# Chrome DevTools MCP Tool Reference (~6962 cl100k_base tokens)
44

55
- **[Input automation](#input-automation)** (9 tools)
66
- [`click`](#click)

src/bin/cliDefinitions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -369,7 +369,7 @@ export const commands: Commands = {
369369
},
370370
},
371371
list_pages: {
372-
description: 'Get a list of pages open in the browser.',
372+
description: 'Get a list of pages open in the browser.',
373373
category: 'Navigation automation',
374374
args: {},
375375
},

src/tools/pages.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
export const listPages = defineTool(args => {
2020
return {
2121
name: 'list_pages',
22-
description: `Get a list of pages ${args?.categoryExtensions ? 'including extension service workers' : ''} open in the browser.`,
22+
description: `Get a list of pages${args?.categoryExtensions ? ' including extension service workers' : ''} open in the browser.`,
2323
annotations: {
2424
category: ToolCategory.NAVIGATION,
2525
readOnlyHint: true,

tests/formatters/NetworkFormatter.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -291,7 +291,7 @@ describe('NetworkFormatter', () => {
291291
assert.match(result, /"response":"body"/);
292292
});
293293

294-
it('handles redirect chain', async (t) => {
294+
it('handles redirect chain', async t => {
295295
const redirectRequest = getMockRequest({
296296
url: 'http://example.com/redirect',
297297
});

0 commit comments

Comments
 (0)