Skip to main content
Glama

get_storage_delivery

Read-onlyIdempotent

Read the current delivery status for a customer storage destination using its delivery ID, so you can track webhook delivery progress and confirm whether a stored asset reached its destination.

Instructions

Read the current storage delivery status. Scope: storage:read.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
delivery_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint=false, so the safety profile is fully covered without the description. The description adds the required auth scope (storage:read), which is genuinely useful context beyond the annotations, but says nothing about error behavior for a missing or malformed delivery_id.

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?

Two short sentences, front-loaded with the action and followed by the scope. No waste, though it is arguably under-specified rather than optimally concise.

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 single-resource read with full safety annotations and no output schema, the definition is close to adequate, but the unexplained delivery_id format/prefix and the absence of any usage context for choosing it over list_storage_deliveries leave gaps.

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

Parameters2/5

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

One parameter at 0% schema description coverage. The schema only constrains delivery_id with a regex pattern (^std_[a-f0-9]{64}$); the description never mentions the parameter, its expected prefix format, or what happens on a bad value, so it fails to compensate for the coverage gap.

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+resource: read the current storage delivery status. It is reasonably distinguishable from list_storage_deliveries (plural, listing) and retry_storage_delivery (mutation), though it never explicitly names those siblings as alternatives.

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?

No when-to-use guidance, no conditions, and no alternatives named. The agent must infer from the name that this is the single-delivery lookup versus list_storage_deliveries.

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