generate_image
Create custom images by providing a detailed prompt and filename. This tool leverages OpenAI's DALL·E-3 model within the Image Generator MCP Server to transform text descriptions into visual content.
Instructions
Generate an image from a prompt.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
imageName | Yes | The filename for the image excluding any extensions. | |
prompt | Yes | A prompt detailing what image to generate. |
Input Schema (JSON Schema)
{
"properties": {
"imageName": {
"description": "The filename for the image excluding any extensions.",
"type": "string"
},
"prompt": {
"description": "A prompt detailing what image to generate.",
"type": "string"
}
},
"required": [
"prompt",
"imageName"
],
"type": "object"
}