redo
Reverse the last undo action in Lightroom Classic to restore previous edits or adjustments.
Instructions
Redo the last undone Lightroom operation.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The redo function is defined as an MCP tool, which calls the system.redo Lightroom operation.
async def redo() -> dict[str, Any]: """Redo the last undone Lightroom operation.""" return await _call("system.redo") - src/lightroom_mcp_custom/server.py:723-724 (registration)The redo function is registered as an MCP tool using the @mcp.tool() decorator.
@mcp.tool() async def redo() -> dict[str, Any]: