MCP Flux Studio

control

Generate an image using structural control

Input Schema

NameRequiredDescriptionDefault
guidanceNoGuidance scale
imageYesInput control image path
outputNoOutput filename
promptYesText prompt for generation
stepsNoNumber of inference steps
typeYesType of control to use

Input Schema (JSON Schema)

{ "properties": { "guidance": { "description": "Guidance scale", "type": "number" }, "image": { "description": "Input control image path", "type": "string" }, "output": { "description": "Output filename", "type": "string" }, "prompt": { "description": "Text prompt for generation", "type": "string" }, "steps": { "default": 50, "description": "Number of inference steps", "type": "number" }, "type": { "description": "Type of control to use", "enum": [ "canny", "depth", "pose" ], "type": "string" } }, "required": [ "type", "image", "prompt" ], "type": "object" }

Other Tools