DALL-E MCP Server

by joshmouch

generate_image_using_dalle3

Create and save high-quality images from text prompts using DALL-E 3. Specify size, quality, and style, and save the output to an absolute path for efficient image generation.

Instructions

Generate an image using DALL-E 3 (Azure or OpenAI) based on a text prompt and save it to an absolute path.

Input Schema

NameRequiredDescriptionDefault
outputPathYesRequired. Absolute path to save the generated image (e.g., 'd:/images/output.png'). Relative paths are not allowed.
promptYesText description of the desired image
qualityNoQuality of the generated image.standard
sizeNoSize of the generated image.
styleNoStyle of the generated image.vivid

Input Schema (JSON Schema)

{ "properties": { "outputPath": { "description": "Required. Absolute path to save the generated image (e.g., 'd:/images/output.png'). Relative paths are not allowed.", "type": "string" }, "prompt": { "description": "Text description of the desired image", "type": "string" }, "quality": { "default": "standard", "description": "Quality of the generated image.", "enum": [ "standard", "hd" ], "type": "string" }, "size": { "description": "Size of the generated image.", "enum": [ "1024x1024", "1792x1024", "1024x1792" ], "type": "string" }, "style": { "default": "vivid", "description": "Style of the generated image.", "enum": [ "vivid", "natural" ], "type": "string" } }, "required": [ "prompt", "outputPath" ], "type": "object" }

You must be authenticated.

Other Tools from DALL-E MCP Server

Related Tools

ID: i8392k7u6c