Skip to main content
Glama

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
NameRequiredDescriptionDefault
local_idsNo

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)

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/4xiomdev/lightroom-classic-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server