Powerpoint MCP Server

add-slide-comparison

Add a new a comparison slide with title and comparison content. Use when you wish to compare two concepts

Input Schema

NameRequiredDescriptionDefault
left_side_contentYesContent/body text of left concept. Separate main points with a single carriage return character.Make sub-points with tab character.Do not use bullet points, asterisks or dashes for points.Max main points is 4
left_side_titleYesTitle of the left concept
presentation_nameYesName of the presentation to add the slide to
right_side_contentYesContent/body text of right concept. Separate main points with a single carriage return character.Make sub-points with tab character.Do not use bullet points, asterisks or dashes for points.Max main points is 4
right_side_titleYesTitle of the right concept
titleYesTitle of the slide

Input Schema (JSON Schema)

{ "properties": { "left_side_content": { "description": "Content/body text of left concept. Separate main points with a single carriage return character.Make sub-points with tab character.Do not use bullet points, asterisks or dashes for points.Max main points is 4", "type": "string" }, "left_side_title": { "description": "Title of the left concept", "type": "string" }, "presentation_name": { "description": "Name of the presentation to add the slide to", "type": "string" }, "right_side_content": { "description": "Content/body text of right concept. Separate main points with a single carriage return character.Make sub-points with tab character.Do not use bullet points, asterisks or dashes for points.Max main points is 4", "type": "string" }, "right_side_title": { "description": "Title of the right concept", "type": "string" }, "title": { "description": "Title of the slide", "type": "string" } }, "required": [ "presentation_name", "title", "left_side_title", "left_side_content", "right_side_title", "right_side_content" ], "type": "object" }