Stability AI MCP Server

stability-ai-control-style

Generate a new image in the style of a reference image

Input Schema

NameRequiredDescriptionDefault
aspectRatioNoOptional aspect ratio for the generated image
fidelityNoHow closely the output image's style should match the input (0-1)
imageFileUriYesThe URI to the style 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": { "aspectRatio": { "description": "Optional aspect ratio for the generated image", "enum": [ "16:9", "1:1", "21:9", "2:3", "3:2", "4:5", "5:4", "9:16", "9:21" ], "type": "string" }, "fidelity": { "description": "How closely the output image's style should match the input (0-1)", "type": "number" }, "imageFileUri": { "description": "The URI to the style 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" }