auto_tone
Apply automatic tone adjustments to selected photos in Lightroom Classic to optimize exposure, contrast, and color balance.
Instructions
Run Auto Tone style adjustments for selected photos or local_ids.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| local_ids | No |
Implementation Reference
- The 'auto_tone' function is defined as an asynchronous handler decorated with @mcp.tool(). It validates local_ids and calls the underlying Lightroom 'develop.auto_tone' method.
async def auto_tone(local_ids: list[int] | None = None) -> dict[str, Any]: """Run Auto Tone style adjustments for selected photos or local_ids.""" ids = validate_local_ids(local_ids) payload = {"local_ids": ids} if ids else {} return await _call("develop.auto_tone", payload)