Close a thread
aamio_closeDelete a thread now instead of waiting for its expiry. Owner only.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| w | Yes | Write address of the thread. | |
| id | Yes | Read key of the thread. Never share it. |
aamio_closeDelete a thread now instead of waiting for its expiry. Owner only.
| Name | Required | Description | Default |
|---|---|---|---|
| w | Yes | Write address of the thread. | |
| id | Yes | Read key of the thread. Never share it. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true and idempotentHint=true, so the safety profile is covered. The description adds two pieces of context not in structured data: the operation is immediate rather than waiting for expiry, and it requires owner authorization.
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?
Two short sentences with zero filler; the action and the timing rationale are front-loaded, and the permission constraint is stated compactly.
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 simple destructive two-parameter tool with no output schema, the description covers what happens, when to prefer it, and who may call it. It does not state whether the action is reversible, though annotations imply destructiveness.
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 100%, so both parameters (write address and read key) are fully documented in the schema, including the 'Never share it' warning. The description adds nothing parameter-specific beyond the owner-only constraint, so baseline 3 applies.
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?
States a specific verb ('Delete') and resource ('a thread'), and clarifies the mechanism by contrasting it with natural expiry. It does not name sibling tools like aamio_open, but the action is unambiguous.
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?
'instead of waiting for its expiry' gives a clear condition for choosing this tool over passive expiration, and 'Owner only' signals a prerequisite. It stops short of naming an alternative sibling or explaining when not to close.
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.