docs: Update README about imageResponses option. (#646)

This commit is contained in:
おがどら
2025-07-10 09:40:22 +09:00
committed by GitHub
parent 127c996e86
commit 1600ba6645

View File

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