Skip to main content
Glama
WYRE-AI

Slide MCP Server

by WYRE-AI

slide_get_backup

Retrieve a specific backup attempt by ID to inspect its result and any error details if it failed.

Instructions

Get a single backup attempt by ID, including its result and error details if it failed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
backup_idYesBackup ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It adds useful information that the result and error details are included for failed attempts, but it does not mention read-only side effects, not-found behavior, authentication, or rate limits. This is adequate for a simple getter but not rich.

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 a single, focused sentence with no filler. The core action and the key output detail are front-loaded, making it easy for an agent to parse quickly.

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 getter with no output schema, the description is mostly complete: it states the resource, the lookup key, and the response contents. It does not specify behavior when the ID is not found, but this is a minor gap for such a simple tool.

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%, and the description adds no extra meaning to backup_id beyond what the schema already states. This matches the baseline expectation when the schema fully documents the parameter.

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

Purpose5/5

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

The description uses a specific verb ('Get') and resource ('a single backup attempt by ID'), which clearly distinguishes it from sibling tools like slide_list_backups that return multiple items. It also identifies what the response includes: result and error details if failed.

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 description implies this tool is for fetching one backup attempt by ID, likely after listing backups, but it does not explicitly state when to use it versus slide_list_backups or other backup-related tools. No exclusions or alternative routing are provided.

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