select_mask_tool
Choose a masking tool in Lightroom Classic to apply localized adjustments: brush, graduated filter, radial filter, or range mask.
Instructions
Select a mask tool: brush, graduated-filter, radial-filter, or range-mask.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tool | Yes |
Implementation Reference
- The `select_mask_tool` function is defined as an MCP tool, which calls the bridge command 'masks.select_tool'.
@mcp.tool() async def select_mask_tool(tool: str) -> dict[str, Any]: """Select a mask tool: brush, graduated-filter, radial-filter, or range-mask.""" if not tool: raise ValueError("tool is required") return await _call("masks.select_tool", {"tool": tool})