Skip to main content
Glama
offscriptpontus

MakeSlates MCP Server

list_presentations

Retrieve presentations from MakeSlates by workspace, search by title, or return personal decks when no workspace ID is provided.

Instructions

List presentations. Use workspaceId to filter by workspace, or omit for personal presentations.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of presentations to return
searchNoSearch term to filter presentations by title
workspaceIdNoWorkspace ID to filter by (omit for personal presentations)

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?

With no annotations provided, the description must carry the behavioral burden. 'List' strongly implies a read-only operation, but the description does not explicitly state that no data is modified, nor does it mention pagination, default limits, sort order, or authentication requirements.

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 two short sentences, front-loads the primary action, and immediately follows with the key filtering distinction. Every sentence earns its place with no wasted wording.

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 simple list tool with full parameter schema coverage and no output schema, the description covers the essential filtering behavior. It could mention pagination or default limit behavior, but those are absent from annotations and output schema, so the gap is minor for this tool's complexity.

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%, so the input schema already documents limit, search, and workspaceId. The description repeats the workspaceId behavior ('omit for personal presentations') but adds no syntax, defaults, or constraints beyond what the schema provides, 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?

The description states a clear verb ('List') and resource ('presentations'), so the agent can identify the operation. It does not explicitly distinguish itself from siblings like list_templates or get_presentation, but the purpose is still clear from the verb-resource pairing.

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?

It explains how to filter by workspace versus omitting workspaceId for personal presentations, which is useful context. However, it gives no guidance on when to choose this tool over alternatives such as get_presentation or list_templates, leaving usage largely implied.

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