Skip to main content
Glama

set_pick_status

Set pick flags for photos in Lightroom Classic to reject (-1), unflag (0), or pick (1) for organizing your photo catalog.

Instructions

Set pick flag: -1 reject, 0 unflag, 1 pick.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusYes
local_idsNo

Implementation Reference

  • The handler for the 'set_pick_status' tool, which validates the pick status and sends a 'metadata.set_pick_status' command to the Lightroom bridge.
    async def set_pick_status(status: int, local_ids: list[int] | None = None) -> dict[str, Any]:
        """Set pick flag: -1 reject, 0 unflag, 1 pick."""
        payload = {
            "status": validate_pick_status(status),
        }
        ids = validate_local_ids(local_ids)
        if ids:
            payload["local_ids"] = ids
        return await _call("metadata.set_pick_status", 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