power-point-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PPTX_TARGET | Yes | Absolute path to the one .pptx the server may touch. | |
| PPTX_TEMPLATE | No | Absolute path to a .pptx or .potx template, if any. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| presentation_infoA | Return high-level facts about the bound presentation. |
| list_slidesA | List every slide with its layout, title, and a short text snippet. |
| read_slideC | Return shape-level details for a single slide. |
| create_presentation_from_templateC | Create the bound target file from PPTX_TEMPLATE. |
| add_slideB | Add a slide using |
| set_slide_placeholderC | Set a placeholder on an existing slide by its name. |
| set_slide_placeholder_by_idxC | Set a placeholder on an existing slide by its layout idx. |
| set_slide_titleC | Set the title placeholder of a slide. |
| delete_slideC | Remove a slide from the bound presentation. |
| reorder_slideC | Move a slide to a new position. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 10 tools
Most tools have distinct purposes, but set_slide_placeholder and set_slide_placeholder_by_idx could cause confusion as both set placeholders via different identifiers; however, descriptions clarify the difference.
Tools follow a consistent verb_noun pattern in snake_case, e.g., add_slide, delete_slide. The exception is presentation_info, which lacks a verb, but overall the naming is predictable.
10 tools cover the essential operations for PowerPoint slide management (create, read, update, delete, reorder) without being excessive or sparse for the domain.
The set covers core slide lifecycle and placeholder manipulation, but lacks tools for adding custom shapes, images, or saving/exporting, which may be needed for full PowerPoint editing.