stake_prediction
Stake karma on a challenge outcome.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| face | Yes | ||
| outcome | Yes | ||
| challengeId | Yes |
Stake karma on a challenge outcome.
| Name | Required | Description | Default |
|---|---|---|---|
| face | Yes | ||
| outcome | Yes | ||
| challengeId | Yes |
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. It does not state whether karma is deducted immediately, what happens on a wrong prediction, whether a stake can be withdrawn, or whether the action is reversible — critical for something called 'stake'.
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?
A single front-loaded sentence with no wasted words, but it is under-specified rather than genuinely concise — brevity here comes at the cost of nearly all operational 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 three-required-parameter mutation with no annotations and no output schema, the description is far too thin: opaque 'face' semantics, unknown outcome vocabulary, and no indication of the karma impact or return shape.
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 0%, so the description must compensate but does not. 'challenge outcome' vaguely maps to challengeId/outcome, but the integer 'face' parameter is left completely unexplained, and no accepted values or formats are given for outcome or challengeId.
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 phrase 'Stake karma on a challenge outcome' gives a specific verb (stake) and resource (karma on a challenge outcome), so the agent can tell it is a wager/prediction action rather than a generic vote. It does not distinguish itself from siblings like cast_vote, vote, or score_challenge, which also touch challenge outcomes.
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?
No guidance is given on when to stake versus using cast_vote, vote, or score_challenge, nor any prerequisites (e.g., must a challenge be declared first?). Usage is only inferable from the word 'stake'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.