Skip to main content
Glama
Starbavk
by Starbavk

create_presentation

Create a new PowerPoint (.pptx) at an absolute file path, with an optional title for the first slide.

Instructions

Create a new PowerPoint presentation (.pptx).

Args: path: Absolute file path for the new presentation title: Optional title for the first slide

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYes
titleNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/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 full behavioral burden. It discloses that a new .pptx file is created, but does not mention what happens if the file already exists, whether directories are created, what is returned, or any side effects beyond file creation.

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: a clear one-line purpose followed by a short parameter list. It contains no filler, and each element adds useful semantic information.

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?

For a simple two-parameter creation tool, the essential call is adequately specified. However, with no annotations and no output schema, the description leaves out important contextual details such as overwrite behavior and expected return value, making it adequate but not complete.

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 add meaning. It does: 'path' is clarified as an absolute file path, and 'title' is explained as an optional title for the first slide, which goes beyond the bare schema properties.

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 clearly states a specific verb and resource: 'Create a new PowerPoint presentation (.pptx).' This distinguishes it from sibling tools like add_presentation_slide, add_presentation_text, and read_presentation at a basic level, though it does not explicitly call out those alternatives.

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

Usage Guidelines3/5

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

The phrase 'Create a new PowerPoint presentation' implies this is the entry point before adding slides or text, and the sibling set shows Excel/Word alternatives. However, there is no explicit when-to-use, when-not-to-use, or alternative-tool guidance; the agent must infer the workflow.

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