Stability AI MCP Server

stability-ai-search-and-replace

Replace objects or elements in an image by describing what to replace and what to replace it with.

Input Schema

NameRequiredDescriptionDefault
imageFileUriYesThe URI to the image file. It should start with file://
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 place of the searched content
searchPromptYesShort description of what to replace in the image

Input Schema (JSON Schema)

{ "properties": { "imageFileUri": { "description": "The URI to the image file. It should start with file://", "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 place of the searched content", "type": "string" }, "searchPrompt": { "description": "Short description of what to replace in the image", "type": "string" } }, "required": [ "imageFileUri", "searchPrompt", "prompt", "outputImageFileName" ], "type": "object" }