Verify a registered destination
verify_destinationWe call the URL and expect the challenge back. Until this passes, no task may point at it.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Destination id, as returned by register_destination. |
verify_destinationWe call the URL and expect the challenge back. Until this passes, no task may point at it.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Destination id, as returned by register_destination. |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure, and it does provide real behavior: the tool makes an HTTP call to the destination URL and requires a challenge back. It also reveals the gating effect — tasks cannot point to the destination until this passes. It stops short of describing failure details response semantics or side effects, but the core behavior is transparent.
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 carry the behavioral description and the important precondition. There is no filler, and the operational behavior is front-loaded before the policy consequence. Every clause earns its place.
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 single-id verification tool with no output schema and no annotations, the description is nearly complete: it says what happens, what is expected, and why it matters. The opening 'We call the URL' could be clearer about whether this is immediate and synchronous, and there is no mention of what happens on failure, but the mandatory precondition is sufficiently clear.
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 input schema already fully documents the only parameter, id, as 'Destination id, as returned by register_destination.' The description does not add further parameter-level meaning beyond implying that id identifies the URL to call. With 100 percent schema coverage, the baseline of 3 is appropriate.
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 identifies the verification action: it calls the destination URL and expects a challenge response. It also states the policy consequence, which sets it apart from register_destination, list_destinations, and delete_destination. Slightly indirect because the actual verb 'verify' is not repeated, but the behavior is explicit.
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 'Until this passes, no task may point at it' implies the tool should be called before creating/pointing a task at a destination. However, it never explicitly says when to use it or when not to, and it does not name any non-alternative. The usage context is implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.