Skip to main content
Glama
Starbavk
by Starbavk

add_presentation_slide

Add a slide to a PowerPoint presentation with specified layout, title, and content.

Instructions

Add a slide to a PowerPoint presentation.

Args: path: Path to the .pptx file layout_index: Slide layout index (0=Title, 1=Title+Content, 6=Blank) title: Slide title content: Slide body content

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
titleNo
contentNo
layout_indexNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It only mentions the action and parameters, without stating side effects, file-modification behavior, error cases, or return behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded with the primary purpose, followed by a clean argument list. There is no redundant or filler text.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

All parameters are documented and defaults are visible, but the description omits important usage context such as whether the file must exist, how the file is affected, and what the expected outcome is. It is adequate but has clear gaps for a mutating tool with no annotations or output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It effectively explains all four parameters, and the layout_index mapping (0=Title, 1=Title+Content, 6=Blank) is particularly useful beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Add a slide to a PowerPoint presentation', which is a clear verb and resource. It does not explicitly differentiate from the sibling add_presentation_text, but the slide-level scope is recognizable.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives like create_presentation or add_presentation_text. It also does not state prerequisites such as whether the .pptx file must already exist.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.