MCP Flux Studio

inpaint

Inpaint an image using a mask

Input Schema

NameRequiredDescriptionDefault
imageYesInput image path
mask_shapeNoShape of the maskcircle
outputNoOutput filenameinpainted.jpg
positionNoPosition of the maskcenter
promptYesText prompt for inpainting

Input Schema (JSON Schema)

{ "properties": { "image": { "description": "Input image path", "type": "string" }, "mask_shape": { "default": "circle", "description": "Shape of the mask", "enum": [ "circle", "rectangle" ], "type": "string" }, "output": { "default": "inpainted.jpg", "description": "Output filename", "type": "string" }, "position": { "default": "center", "description": "Position of the mask", "enum": [ "center", "ground" ], "type": "string" }, "prompt": { "description": "Text prompt for inpainting", "type": "string" } }, "required": [ "image", "prompt" ], "type": "object" }

Other Tools