cancel_email
Cancel a scheduled email before it sends. Provide the email ID to stop delivery.
Instructions
Cancel a scheduled email before it sends (POST /emails/:id/cancel).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The email id. |
Cancel a scheduled email before it sends. Provide the email ID to stop delivery.
Cancel a scheduled email before it sends (POST /emails/:id/cancel).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | The email id. |
Changes observed during successful MCP inspections.
v1.0.2Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the HTTP method and the cancel-before-send behavior, but it does not explain what happens if the email has already been sent, whether the operation is idempotent, or what response to expect.
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?
One concise sentence contains the action, the timing constraint, and the endpoint. There is no filler, repetition, or unnecessary detail.
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?
For a one-parameter cancellation tool with no output schema, the description is nearly complete. The main missing piece is an explicit failure case, such as attempting to cancel an already-sent email, but the core operation and input are fully specified.
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 already fully documents the single 'id' parameter with 100% coverage. The endpoint's ':id' confirms it is a path parameter, but the description adds little meaning beyond what the schema provides.
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 states a specific verb ('Cancel'), a specific resource ('a scheduled email'), and the exact endpoint. The 'before it sends' qualifier makes the tool's scope clear and helps distinguish it from cancel_campaign and other email-related 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 phrase 'before it sends' gives a clear timing condition that tells an agent when this tool is appropriate. It does not explicitly name alternatives or exclusions, but the single-action nature of the tool makes the usage context unambiguous.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.