Powerpoint MCP Server

add-slide-picture-with-caption

Add a new slide with a picture and caption to an existing presentation

Input Schema

NameRequiredDescriptionDefault
captionYesCaption text to appear below the picture
image_pathYesPath to the image file to insert
presentation_nameYesName of the presentation to add the slide to
titleYesTitle of the slide

Input Schema (JSON Schema)

{ "properties": { "caption": { "description": "Caption text to appear below the picture", "type": "string" }, "image_path": { "description": "Path to the image file to insert", "type": "string" }, "presentation_name": { "description": "Name of the presentation to add the slide to", "type": "string" }, "title": { "description": "Title of the slide", "type": "string" } }, "required": [ "presentation_name", "title", "caption", "image_path" ], "type": "object" }