Stability AI MCP Server

stability-ai-search-and-recolor

Search and recolor object(s) in an image

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 colors you wish to see in the output image
selectPromptYesShort description of what to search for and recolor 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 colors you wish to see in the output image", "type": "string" }, "selectPrompt": { "description": "Short description of what to search for and recolor in the image", "type": "string" } }, "required": [ "imageFileUri", "prompt", "selectPrompt", "outputImageFileName" ], "type": "object" }