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
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -156,10 +156,9 @@ The Chrome DevTools MCP server supports the following configuration option:
- **Default:** `false`

- **`--channel`**
Specify a different Chrome channel that should be used.
Specify a different Chrome channel that should be used. The default is the stable channel version.
- **Type:** string
- **Choices:** `stable`, `canary`, `beta`, `dev`
- **Default:** `stable`

<!-- END AUTO GENERATED OPTIONS -->

Expand Down
4 changes: 2 additions & 2 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ export const cliOptions = {
},
channel: {
type: 'string' as const,
description: 'Specify a different Chrome channel that should be used.',
description:
'Specify a different Chrome channel that should be used. The default is the stable channel version.',
choices: ['stable', 'canary', 'beta', 'dev'] as const,
conflicts: ['browserUrl', 'executablePath'],
default: 'stable',
},
logFile: {
type: 'string' as const,
Expand Down