Stability AI MCP Server

stability-ai-control-structure

Generate a new image while maintaining the structure of a reference image

Input Schema

NameRequiredDescriptionDefault
controlStrengthNoHow much influence the reference image has on the generation (0-1)
imageFileUriYesThe URI to the structure reference image file. It should start with file://
negativePromptNoOptional description of what you don't want to see
outputImageFileNameYesThe desired name of the output image file, no file extension. Make it descriptive but short. Lowercase, dash-separated, no special characters.
promptYesWhat you wish to see in the output image

Input Schema (JSON Schema)

{ "properties": { "controlStrength": { "description": "How much influence the reference image has on the generation (0-1)", "type": "number" }, "imageFileUri": { "description": "The URI to the structure reference image file. It should start with file://", "type": "string" }, "negativePrompt": { "description": "Optional description of what you don't want to see", "type": "string" }, "outputImageFileName": { "description": "The desired name of the output image file, no file extension. Make it descriptive but short. Lowercase, dash-separated, no special characters.", "type": "string" }, "prompt": { "description": "What you wish to see in the output image", "type": "string" } }, "required": [ "imageFileUri", "prompt", "outputImageFileName" ], "type": "object" }