From 1600ba66455e6d624ce528bf316ae35693693b36 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E3=81=8A=E3=81=8C=E3=81=A9=E3=82=89?= <61941819+ogadra@users.noreply.github.com> Date: Thu, 10 Jul 2025 09:40:22 +0900 Subject: [PATCH] docs: Update README about imageResponses option. (#646) --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 37f699e..c8ae99d 100644 --- a/README.md +++ b/README.md @@ -357,9 +357,10 @@ npx @playwright/mcp@latest --config path/to/config.json }; /** - * Do not send image responses to the client. + * Whether to send image responses to the client. Can be "allow", "omit", or "auto". + * Defaults to "auto", images are omitted for Cursor clients and sent for all other clients. */ - noImageResponses?: boolean; + imageResponses?: 'allow' | 'omit' | 'auto'; } ```