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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -337,17 +337,17 @@ The Chrome DevTools MCP server supports the following configuration option:
- **Type:** array

- **`--categoryEmulation`**
Set to false to exlcude tools related to emulation.
Set to false to exclude tools related to emulation.
- **Type:** boolean
- **Default:** `true`

- **`--categoryPerformance`**
Set to false to exlcude tools related to performance.
Set to false to exclude tools related to performance.
- **Type:** boolean
- **Default:** `true`

- **`--categoryNetwork`**
Set to false to exlcude tools related to network.
Set to false to exclude tools related to network.
- **Type:** boolean
- **Default:** `true`

Expand Down
6 changes: 3 additions & 3 deletions src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -142,17 +142,17 @@ export const cliOptions = {
categoryEmulation: {
type: 'boolean',
default: true,
describe: 'Set to false to exlcude tools related to emulation.',
describe: 'Set to false to exclude tools related to emulation.',
},
categoryPerformance: {
type: 'boolean',
default: true,
describe: 'Set to false to exlcude tools related to performance.',
describe: 'Set to false to exclude tools related to performance.',
},
categoryNetwork: {
type: 'boolean',
default: true,
describe: 'Set to false to exlcude tools related to network.',
describe: 'Set to false to exclude tools related to network.',
},
} satisfies Record<string, YargsOptions>;

Expand Down
Loading