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'; } ```