Skip to main content
Glama
D0rSegal
by D0rSegal

skydemon_download_cloud_flightplan

Download one cloud flightplan and summarize it (no edits by default).

Instructions

Download one cloud flightplan and summarize it (no edits by default).

Args: name: exact cloud file name from skydemon_list_cloud_flightplans. save: also save a copy into the local Routes dir. overwrite: allow replacing an existing local file when saving.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
saveNo
overwriteNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/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, and it does disclose useful traits: the default is a summary with no edits, and save/overwrite describe local side effects. However, it is silent on authentication/network requirements, what happens when the named file does not exist, and whether any cloud state is touched, which matters for an unannotated tool.

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

Conciseness4/5

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

Front-loaded purpose sentence followed by a tight per-argument list; every line earns its place. The parenthetical '(no edits by default)' is slightly cryptic since no edit parameter exists, which is the only structural wobble.

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 an unannotated tool with no output schema and 0% schema coverage, the description covers the parameters and local side effects well but omits what the 'summary' actually contains, auth prerequisites, and failure behavior. Those gaps are tolerable but leave the agent guessing about the response.

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, and it largely does: it defines name as the exact cloud file name sourced from the list tool, save as writing a copy into the local Routes dir, and overwrite as permitting replacement of an existing local file only while saving. That is meaningful semantics beyond the bare boolean titles, though it never clarifies what happens if overwrite is true while save is false.

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: 'Download one cloud flightplan and summarize it', which is unambiguous about scope (one file, read-like operation). It also points at the sibling skydemon_list_cloud_flightplans as the source of the name. It stops short of contrasting itself with skydemon_read_flightplan, so an agent must infer whether 'read' and 'download' differ.

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

Usage Guidelines4/5

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

The description makes the workflow explicit: the name must be 'exact cloud file name from skydemon_list_cloud_flightplans', which tells the agent to list first and where the identifier comes from. No when-not guidance is given (e.g., vs. local skydemon_read_flightplan), so it is clear context without exclusions.

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