batchGenerateImages
Create multiple images simultaneously from a list of text prompts with customizable dimensions and save paths using FLUX Image Generator MCP Server.
Instructions
Generate multiple images from a list of prompts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
customPath | No | Custom path to save the generated images | |
height | No | Height of the images | |
prompts | Yes | List of text prompts | |
width | No | Width of the images |
Input Schema (JSON Schema)
{
"properties": {
"customPath": {
"description": "Custom path to save the generated images",
"type": "string"
},
"height": {
"default": 1024,
"description": "Height of the images",
"type": "number"
},
"prompts": {
"description": "List of text prompts",
"items": {
"type": "string"
},
"type": "array"
},
"width": {
"default": 1024,
"description": "Width of the images",
"type": "number"
}
},
"required": [
"prompts"
],
"type": "object"
}