generate-and-save-image
Create and save custom PNG images using FLUX model prompts on the PowerPoint MCP Server. Specify a description and filename to generate and store images for presentations.
Instructions
Generates an image using a FLUX model and save the image to the specified path. The tool will return a PNG file path. It should be used when the user asks to generate or create an image or a picture.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
file_name | Yes | Filename of the image. Include the extension of .png | |
prompt | Yes | Description of the image to generate in the form of a prompt. |
Input Schema (JSON Schema)
{
"properties": {
"file_name": {
"description": "Filename of the image. Include the extension of .png",
"type": "string"
},
"prompt": {
"description": "Description of the image to generate in the form of a prompt.",
"type": "string"
}
},
"required": [
"prompt",
"file_name"
],
"type": "object"
}