Stability AI MCP Server

stability-ai-outpaint

Extends an image in any direction while maintaining visual consistency.

Input Schema

NameRequiredDescriptionDefault
creativityNoThe creativity of the outpaint operation
downNoThe number of pixels to extend the image downwards
imageFileUriYesThe URI to the image file. It should start with file://
leftNoThe number of pixels to extend the image to the left
outputImageFileNameYesThe desired name of the output image file, no file extension. Make it descriptive but short. Lowercase, dash-separated, no special characters.
promptNoThe prompt to use for the outpaint operation
rightNoThe number of pixels to extend the image to the right
upNoThe number of pixels to extend the image upwards

Input Schema (JSON Schema)

{ "properties": { "creativity": { "description": "The creativity of the outpaint operation", "type": "number" }, "down": { "description": "The number of pixels to extend the image downwards", "type": "number" }, "imageFileUri": { "description": "The URI to the image file. It should start with file://", "type": "string" }, "left": { "description": "The number of pixels to extend the image to the left", "type": "number" }, "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": "The prompt to use for the outpaint operation", "type": "string" }, "right": { "description": "The number of pixels to extend the image to the right", "type": "number" }, "up": { "description": "The number of pixels to extend the image upwards", "type": "number" } }, "required": [ "imageFileUri", "outputImageFileName" ], "type": "object" }