set_lens_blur_bokeh
Adjust the bokeh shape in lens blur effects to customize background blur aesthetics in Lightroom Classic photo edits.
Instructions
Set the lens blur bokeh shape.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bokeh | Yes |
Implementation Reference
- The implementation of the `set_lens_blur_bokeh` MCP tool in `server.py`. It registers the tool with the `@mcp.tool()` decorator and calls the underlying `develop.set_lens_blur_bokeh` bridge command.
@mcp.tool() async def set_lens_blur_bokeh(bokeh: str) -> dict[str, Any]: """Set the lens blur bokeh shape.""" if not bokeh: raise ValueError("bokeh shape is required") return await _call("develop.set_lens_blur_bokeh", {"bokeh": bokeh})