Powerpoint MCP Server

generate-and-save-image

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

NameRequiredDescriptionDefault
file_nameYesFilename of the image. Include the extension of .png
promptYesDescription 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" }