Stability AI MCP Server

stability-ai-control-sketch

Translate hand-drawn sketches to production-grade images.

Input Schema

NameRequiredDescriptionDefault
controlStrengthNoHow much influence, or control, the image has on the generation. Represented as a float between 0 and 1, where 0 is the least influence and 1 is the maximum.
imageFileUriYesThe URI to the image file. It should start with file://
negativePromptNoWhat you do not wish to see in the output image.
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. A strong, descriptive prompt that clearly defines elements, colors, and subjects will lead to better results. To control the weight of a given word use the format (word:weight), where word is the word you'd like to control the weight of and weight is a value between 0 and 1. For example: The sky was a crisp (blue:0.3) and (green:0.8) would convey a sky that was blue and green, but more green than blue.

Input Schema (JSON Schema)

{ "properties": { "controlStrength": { "description": "How much influence, or control, the image has on the generation. Represented as a float between 0 and 1, where 0 is the least influence and 1 is the maximum.", "maximum": 1, "minimum": 0, "type": "number" }, "imageFileUri": { "description": "The URI to the image file. It should start with file://", "type": "string" }, "negativePrompt": { "description": "What you do not wish to see in the output image.", "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. A strong, descriptive prompt that clearly defines elements, colors, and subjects will lead to better results.\n\nTo control the weight of a given word use the format (word:weight), where word is the word you'd like to control the weight of and weight is a value between 0 and 1. For example: The sky was a crisp (blue:0.3) and (green:0.8) would convey a sky that was blue and green, but more green than blue.", "type": "string" } }, "required": [ "imageFileUri", "prompt", "outputImageFileName" ], "type": "object" }