select_mask
Select an existing mask in Lightroom Classic by its numeric ID to apply targeted adjustments to specific areas of a photo.
Instructions
Select an existing mask by its numeric ID.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mask_id | Yes |
Implementation Reference
- The 'select_mask' tool handler, registered with @mcp.tool(), which selects an existing mask by its numeric ID.
@mcp.tool() async def select_mask(mask_id: int) -> dict[str, Any]: """Select an existing mask by its numeric ID.""" return await _call("masks.select_mask", {"mask_id": mask_id})