Powerpoint MCP Server

add-slide-title-with-table

Add a new slide with a title and table containing the provided data

Input Schema

NameRequiredDescriptionDefault
dataYesTable data object with headers and rows
presentation_nameYesName of the presentation to add the slide to
titleYesTitle of the slide

Input Schema (JSON Schema)

{ "properties": { "data": { "description": "Table data object with headers and rows", "properties": { "headers": { "description": "Array of column headers", "items": { "type": "string" }, "type": "array" }, "rows": { "description": "Array of row data arrays", "items": { "items": { "type": [ "string", "number" ] }, "type": "array" }, "type": "array" } }, "required": [ "headers", "rows" ], "type": "object" }, "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", "data" ], "type": "object" }