add-slide-title-only
Add a title slide to a PowerPoint presentation by specifying the presentation name and slide title. Simplify slide creation for AI-driven presentation editing tasks.
Instructions
This tool adds a new title slide to the presentation you are working on. The tool doesn't return anything. It requires the presentation_name to work on.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
presentation_name | Yes | Name of the presentation to add the slide to | |
title | Yes | Title of the slide |
Input Schema (JSON Schema)
{
"properties": {
"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"
],
"type": "object"
}