recant_vote
Recant the caller's vote.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| targetId | Yes | ||
| targetType | Yes |
Recant the caller's vote.
| Name | Required | Description | Default |
|---|---|---|---|
| targetId | Yes | ||
| targetType | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full behavioral burden, and it discloses nothing: whether the vote is deleted or toggled, whether the operation is idempotent, what happens if no matching vote exists, or whether it requires authentication. For a mutation tool this is a serious gap.
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 short, front-loaded sentence with zero filler — nothing redundant is present. The brevity is a virtue for structure but verges on under-specification given the tool's complexity.
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?
A state-mutating tool with no annotations, no output schema, and undocumented parameters requires far more context than one sentence, including invalidation/error behavior and target-matching rules. Nothing an agent needs to invoke it correctly is present.
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 description coverage is 0% with two required parameters (targetType, targetId), and the description adds no meaning beyond 'the caller's vote'. It never explains that targetType/targetId must identify the same target as the original vote, nor what the enum values imply for lookup behavior.
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 uses a specific verb ('recant') with a specific resource ('vote') and scopes it to the caller's own vote, which is more precise than a bare restatement of the name. It stops short of differentiating itself from the sibling 'cast_vote'/'vote' tools, so an agent must infer that this removes rather than adds a vote.
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?
There is no statement of when to use this tool versus 'cast_vote' or 'vote', no prerequisites (must a vote already exist?), and no error conditions. Usage must be entirely inferred from the name.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.