Skip to main content
Glama

list_snapshots

Retrieve develop snapshots for active photos in Lightroom Classic to review and manage editing history.

Instructions

List develop snapshots for the active photo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
local_idsNo

Implementation Reference

  • The tool `list_snapshots` is implemented as an async function decorated with `@mcp.tool()`, which validates input IDs and calls the internal `_call` helper to communicate with the Lightroom plugin.
    @mcp.tool()
    async def list_snapshots(local_ids: list[int] | None = None) -> dict[str, Any]:
        """List develop snapshots for the active photo."""
        ids = validate_local_ids(local_ids)
        payload: dict[str, Any] = {}
        if ids:
            payload["local_ids"] = ids
        return await _call("develop.list_snapshots", 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