Image Generation MCP Server

generate-image

Generate an image based on a prompt

Input Schema

NameRequiredDescriptionDefault
aspect_ratioNo
filenameNoBase filename to save the image(s) with
go_fastNo
megapixelsNo
num_inference_stepsNo
num_outputsNo
output_dirYesFull absolute path to output directory. For Windows, use double backslashes like 'C:\\Users\\name\\path'. For Unix/Mac use '/path/to/dir'. Always use the proper path otherwise you will get an error.
output_formatNo
output_qualityNo
promptYes

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "aspect_ratio": { "enum": [ "1:1", "4:3", "16:9" ], "type": "string" }, "filename": { "description": "Base filename to save the image(s) with", "type": "string" }, "go_fast": { "type": "boolean" }, "megapixels": { "enum": [ "1", "2", "4" ], "type": "string" }, "num_inference_steps": { "maximum": 20, "minimum": 4, "type": "number" }, "num_outputs": { "maximum": 4, "minimum": 1, "type": "number" }, "output_dir": { "description": "Full absolute path to output directory. For Windows, use double backslashes like 'C:\\\\Users\\\\name\\\\path'. For Unix/Mac use '/path/to/dir'. Always use the proper path otherwise you will get an error.", "type": "string" }, "output_format": { "enum": [ "webp", "png", "jpeg" ], "type": "string" }, "output_quality": { "maximum": 100, "minimum": 1, "type": "number" }, "prompt": { "type": "string" } }, "required": [ "prompt", "output_dir" ], "type": "object" }

You must be authenticated.

Other Tools