auto_white_balance
Automatically adjust white balance for selected photos in Lightroom Classic to correct color temperature and improve image accuracy.
Instructions
Set white balance to Auto for selected photos or local_ids.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| local_ids | No |
Implementation Reference
- The implementation of the auto_white_balance tool handler.
@mcp.tool() async def auto_white_balance(local_ids: list[int] | None = None) -> dict[str, Any]: """Set white balance to Auto for selected photos or local_ids.""" ids = validate_local_ids(local_ids) payload = {"local_ids": ids} if ids else {} return await _call("develop.auto_white_balance", payload)