Stability AI MCP Server

stability-ai-remove-background

Remove the background from an image.

Input Schema

NameRequiredDescriptionDefault
imageFileUriYesThe URI to the image file. It should start with file://
outputImageFileNameNoThe desired name of the output image file, no file extension. Make it descriptive but short. Lowercase, dash-separated, no special characters.

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" } }, "required": [ "imageFileUri" ], "type": "object" }