Skip to main content
Glama
offscriptpontus

MakeSlates MCP Server

get_presentation

Retrieve a presentation by ID with all slides and content, enabling you to inspect or use the complete deck.

Instructions

Get a presentation by ID with all its slides and content

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesThe presentation ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral burden. It does disclose that the response includes all slides and content (a deep/composite fetch rather than metadata only), but says nothing about read-only nature, permissions, or behavior when the ID is missing or invalid.

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?

One short sentence, front-loaded with the verb and resource, with the payload scope appended. Nothing wasted and nothing that could be trimmed without losing information.

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

Completeness4/5

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

For a single-parameter read tool with no output schema, the description tells the agent what it receives (slides and content), which is the key return-value information. It is nearly complete, lacking only error/permission behavior.

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

Parameters3/5

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

Schema description coverage is 100% for the single required 'id' parameter, so the schema already documents it fully. The description's 'by ID' adds no syntax, format, or sourcing detail beyond that, making the baseline 3 appropriate.

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?

States a specific verb and resource ('Get a presentation') and adds scope ('by ID with all its slides and content'), which separates it from list_presentations. It does not, however, explicitly name a sibling alternative the way a 5 would.

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?

Usage is only implied: 'by ID' suggests single-record lookup versus the list_* siblings, but there is no explicit when-to-use, when-not-to-use, or alternative named. Adequate context, no exclusions.

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