create_ladder
Create or update the club ladder: club name and sport. Returns the join URL (the poster target) that players scan.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| club | Yes | ||
| sport | No |
Create or update the club ladder: club name and sport. Returns the join URL (the poster target) that players scan.
| Name | Required | Description | Default |
|---|---|---|---|
| club | Yes | ||
| sport | No |
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. It discloses that the tool returns the join URL (poster target) and that it can both create and update, which are useful behavioral traits. However, it does not mention side effects like overwriting an existing ladder, permissions, or idempotency. The return value disclosure helps but the description is not exhaustive.
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?
The description is a single sentence, front-loaded with the primary action and purpose, followed by the return value. There is no filler or redundancy. Every word contributes to understanding the tool's function, making it highly efficient.
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 two-parameter tool with no output schema, the description covers the essential aspects: what it does, the parameters, and the return value. It does not mention edge cases like whether an existing ladder is replaced or how updates merge, but for a basic create/update tool, this is adequate. The absence of annotations is offset by the clear description of the primary behavior and output.
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 provides only field names and types with no descriptions (0% coverage). The description explicitly states that 'club' is the club name and 'sport' is the sport, adding meaning beyond the schema. This compensates for the schema's lack of detail, though it does not elaborate on formats or constraints beyond the schema's required/optional indicators.
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 clear verb-resource pair ('Create or update the club ladder') and specifies the key fields (club name and sport). It is distinct from sibling tools like add_player, get_standings, record_match, and schedule_match, which handle different operations on the ladder. This leaves no ambiguity about the tool's role.
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 description implies when to use the tool (when setting up or modifying the ladder) but does not explicitly contrast it with alternatives or state exclusions. It does not say 'use this instead of get_standings' or mention any conditions. The context is clear but guidance on alternatives is absent.
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.