From 671559235d25f3579f9b940be34d4359bf7b273b Mon Sep 17 00:00:00 2001 From: Alex Rudenko Date: Wed, 1 Apr 2026 16:46:55 +0200 Subject: [PATCH] feat: experimental click_at(x,y) tool --- README.md | 4 ++++ src/bin/chrome-devtools-mcp-cli-options.ts | 5 +++-- 2 files changed, 7 insertions(+), 2 deletions(-) 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',