All tools

ppt_create

Documents · macOS · Windows

Effect: write (strongest supported action). Status: gated.

Gated means the tool requires an installed app, a connected account, permission, or runtime availability. Check those requirements on the listed platform before using it.

macOS

Purpose

Creates a PowerPoint presentation (.pptx) at `path` from an array of slides, each {title, bullets:[…]}. Requires confirm=true — called without it, returns a preview of the deck instead of writing the file. The path must be somewhere Local MCP can write; Desktop/Documents/Downloads may need a one-time Files-and-Folders grant (System Settings → Privacy & Security → Files and Folders). Returns {created, path, slides}.

Required inputs

Permissions and confirmation

Explicit confirmation parameter: inspect the schema and tool description before any real call. The documentation example keeps confirm false. Obtain user authorization before performing the action.

Full input schema — macOS
{
  "properties": {
    "confirm": {
      "description": "Must be true to create",
      "type": "boolean"
    },
    "path": {
      "description": "Output path for the .pptx file",
      "type": "string"
    },
    "slides": {
      "description": "Array of {title, bullets:[]} slide objects",
      "type": "array"
    }
  },
  "required": [
    "path",
    "slides"
  ],
  "type": "object"
}

Documentation example

Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.

{
  "confirm": false,
  "path": "/Users/demo/Documents/launch-checklist.pptx",
  "slides": [
    {
      "bullets": [
        "Review documentation",
        "Confirm release owner"
      ],
      "title": "Launch checklist"
    }
  ]
}

Windows

Purpose

Creates a PowerPoint (.pptx) file with title and bullet slides.

Required inputs

Permissions and confirmation

Explicit confirmation parameter: inspect the schema and tool description before any real call. The documentation example keeps confirm false. Obtain user authorization before performing the action.

Full input schema — Windows
{
  "properties": {
    "confirm": {
      "description": "Must be true",
      "type": "boolean"
    },
    "path": {
      "description": "Path for the new .pptx file",
      "type": "string"
    },
    "slides": {
      "description": "Array of slides. Each: {title: string, bullets: [string]}",
      "type": "array"
    }
  },
  "required": [
    "path",
    "slides"
  ],
  "type": "object"
}

Documentation example

Do not execute this example. These concrete inputs refer to a fictional demonstration dataset. Resolve real handles and obtain user authorization before any real call.

{
  "confirm": false,
  "path": "C:\\Users\\demo\\Documents\\launch-checklist.pptx",
  "slides": [
    {
      "bullets": [
        "Review documentation",
        "Confirm release owner"
      ],
      "title": "Launch checklist"
    }
  ]
}