delayed_delivery
Hand over a payload now; we POST it to the target at a future moment.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| at | Yes | ISO-8601 | |
| url | Yes | target URL | |
| payload | No |
Hand over a payload now; we POST it to the target at a future moment.
| Name | Required | Description | Default |
|---|---|---|---|
| at | Yes | ISO-8601 | |
| url | Yes | target URL | |
| 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 of behavioral disclosure. It reveals the HTTP method and delay aspect, but does not explain storage semantics, confirmation/response behavior, failure handling, or whether the operation is fire-and-forget. This leaves significant ambiguity for the agent.
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, punchy sentence with no filler. It front-loads the action and uses straightforward language, earning every word.
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 there is no output schema and no annotations, the description must cover operational expectations. It fails to mention what the tool returns (e.g., delivery ID, success confirmation), error conditions (e.g., invalid time, unreachable URL), or payload structure. For a 3-parameter tool, this is incomplete.
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?
Schema coverage is 67% (at and url have descriptions, payload does not). The description confirms that 'payload' is what gets handed over, and 'target' corresponds to url, but it adds little beyond the schema's existing field descriptions. It does not elaborate on payload structure or date/time format nuances.
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: 'Hand over a payload now; we POST it to the target at a future moment.' It identifies the specific verb (POST), the resource (payload to target URL), and the unique timing (future moment), distinguishing it from immediate delivery or scheduling tools.
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 description implies usage for delayed delivery scenarios but does not provide explicit guidance on when to use this tool versus alternatives like guaranteed_delivery, create_schedule, or create_drip. There are no exclusions or conditions mentioned, only the general context of future posting.
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.