Skip to main content
Glama

retry_storage_delivery

Requeue a failed or cancelled delivery to write it to the selected bucket. Use it to recover storage deliveries after errors; requires storage:write and owner/admin access.

Instructions

Requeue a failed or cancelled delivery. Writes to the selected bucket. Requires storage:write and owner/admin.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
delivery_idYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare it is a non-read-only, non-idempotent operation; the description adds genuinely new context — that it writes to the selected bucket and requires storage:write plus owner/admin privileges. It stops short of noting side effects on existing delivery state or retry limits.

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?

Three short, front-loaded sentences with no filler; the action, effect, and auth requirement each appear once and earn their place.

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 mutation tool with annotations and no output schema, the description covers the operation, its write target, and auth requirements. The only gap is the delivery_id parameter, which the schema only partially covers via its pattern.

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?

With 0% schema description coverage, the description carries the burden of explaining delivery_id but says nothing about it beyond the tool's subject. The schema's regex pattern is the only source of format information, so the description adds no parameter meaning.

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?

"Requeue a failed or cancelled delivery" is a specific verb plus resource with a stated scope (failed/cancelled only). It clearly distinguishes itself from siblings like get_storage_delivery, list_storage_deliveries, and redeliver_webhook.

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 condition "failed or cancelled delivery" implies when to use it, but there is no explicit when-not guidance and no named alternative (e.g. redeliver_webhook or re-creating the delivery). Usage is inferable but not routed.

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