Skip to main content
Glama
D0rSegal
by D0rSegal

skydemon_list_cloud_flightplans

List flightplans in SkyDemon cloud storage (User root, read-only).

Instructions

List flightplans in SkyDemon cloud storage (User root, read-only).

Args: pattern: server-side filter, e.g. '.flightplan' or '.gpx'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
patternNo*.flightplan

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 behavioral burden. It usefully discloses read-only access, cloud storage scope, and server-side filtering, but omits authentication requirements, pagination behavior, error handling, and return format.

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 front-loaded, tightly scoped, and uses a structured Args section. Every sentence earns its place with no wasted words.

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 one-parameter list tool with no annotations and no output schema, the description is minimally adequate. It covers purpose, scope, and the parameter, but lacks mention of authentication requirements and any return or pagination behavior.

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 for the single pattern parameter. It does so by explaining that pattern is a server-side filter and giving examples like '*.flightplan' and '*.gpx', adding meaning beyond the raw schema default.

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?

States a specific verb (List), resource (flightplans), and scope (SkyDemon cloud storage, User root, read-only). This distinguishes it from the sibling skydemon_list_flightplans, which is presumably local rather than cloud-based.

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

Usage Guidelines2/5

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

The description gives no explicit when-to-use or when-not-to-use guidance. It does not mention alternatives like skydemon_list_flightplans or describe prerequisites such as authentication, leaving the agent to infer usage entirely.

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