guaranteed_delivery
POST a payload to a URL, retried with backoff until it succeeds.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | target | |
| payload | No |
POST a payload to a URL, retried with backoff until it succeeds.
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | target | |
| payload | No |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses retry/backoff behavior, which is useful, but omits critical details such as what counts as success, timeout/retry limits, failure handling, and side effects of POSTing. The transparency is too shallow for a tool with these behavioral implications.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence that front-loads the action and key behavior. It is efficient, with zero filler or repetition.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the absence of an output schema and annotations, this description is under-specified for a tool that repeatedly POSTs until success. It lacks details on retry limits, success criteria, response format, and error behavior. The retry semantics are a major aspect that requires more context for an agent to invoke it correctly and safely.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema coverage is only 50% (url has 'target', payload has an empty description). The description adds no meaningful parameter semantics—'payload' is simply mentioned as the thing being POSTed, without structure, format, or required fields. It does not compensate for the schema gap.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('POST') and resource ('a URL'), and the retry/backoff behavior distinguishes it from siblings like delayed_delivery. It is specific and immediately understandable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'retried with backoff until it succeeds' implies a use case for reliable, guaranteed delivery, but there is no explicit guidance on when to choose it over siblings like delayed_delivery or attested_fetch. No exclusions or alternate tool references are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.