MCP Server Template for Cursor IDE

generate_image

Generate an image using DALL-E 3

Input Schema

NameRequiredDescriptionDefault
nNoNumber of images to generate
promptYesThe description of the image you want to generate
qualityNoImage quality (standard or hd)standard
sizeNoImage size (1024x1024, 1024x1792, or 1792x1024)1024x1024

Input Schema (JSON Schema)

{ "properties": { "n": { "default": 1, "description": "Number of images to generate", "maximum": 1, "minimum": 1, "type": "integer" }, "prompt": { "description": "The description of the image you want to generate", "type": "string" }, "quality": { "default": "standard", "description": "Image quality (standard or hd)", "enum": [ "standard", "hd" ], "type": "string" }, "size": { "default": "1024x1024", "description": "Image size (1024x1024, 1024x1792, or 1792x1024)", "enum": [ "1024x1024", "1024x1792", "1792x1024" ], "type": "string" } }, "required": [ "prompt" ], "type": "object" }

You must be authenticated.

Other Tools