toggle_mask_overlay
Control mask overlay visibility in Lightroom Classic to manage editing adjustments and refine photo selections during professional workflows.
Instructions
Toggle the mask overlay visualization on/off.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- The handler function `toggle_mask_overlay` which calls the underlying `masks.toggle_overlay` command.
async def toggle_mask_overlay() -> dict[str, Any]: """Toggle the mask overlay visualization on/off.""" return await _call("masks.toggle_overlay") - src/lightroom_mcp_custom/server.py:693-696 (registration)The `@mcp.tool()` decorator used to register the `toggle_mask_overlay` function as an MCP tool.
@mcp.tool() async def toggle_mask_overlay() -> dict[str, Any]: """Toggle the mask overlay visualization on/off.""" return await _call("masks.toggle_overlay")