diff --git a/README.md b/README.md index 438024c3e..213dd6101 100644 --- a/README.md +++ b/README.md @@ -539,6 +539,10 @@ The Chrome DevTools MCP server supports the following configuration option: If enabled, ignores errors relative to self-signed and expired certificates. Use with caution. - **Type:** boolean +- **`--experimentalVision`/ `--experimental-vision`** + Whether to enable coordinate-based tools such as click_at(x,y). Usually requires a computer-use model able to produce accurate coordinates by looking at screenshots. + - **Type:** boolean + - **`--experimentalScreencast`/ `--experimental-screencast`** Exposes experimental screencast tools (requires ffmpeg). Install ffmpeg https://www.ffmpeg.org/download.html and ensure it is available in the MCP server PATH. - **Type:** boolean diff --git a/src/bin/chrome-devtools-mcp-cli-options.ts b/src/bin/chrome-devtools-mcp-cli-options.ts index 80046b115..ce37ac36a 100644 --- a/src/bin/chrome-devtools-mcp-cli-options.ts +++ b/src/bin/chrome-devtools-mcp-cli-options.ts @@ -160,8 +160,9 @@ export const cliOptions = { }, experimentalVision: { type: 'boolean', - describe: 'Whether to enable vision tools', - hidden: true, + describe: + 'Whether to enable coordinate-based tools such as click_at(x,y). Usually requires a computer-use model able to produce accurate coordinates by looking at screenshots.', + hidden: false, }, experimentalStructuredContent: { type: 'boolean',