generate_image
Convert text prompts into high-quality images using the Flux Schnell model, powered by the mcp-flux-schnell MCP server for streamlined text-to-image generation.
Instructions
Generate an image from a text prompt using Flux Schnell model
Input Schema
Name | Required | Description | Default |
---|---|---|---|
prompt | Yes | A text description of the image you want to generate. |
Input Schema (JSON Schema)
{
"properties": {
"prompt": {
"description": "A text description of the image you want to generate.",
"maxLength": 2048,
"minLength": 1,
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}