get_game
Fetch one GetCourt game by its numeric id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Game id. |
Fetch one GetCourt game by its numeric id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Game id. |
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 must carry the full burden of behavioral disclosure. It only says 'Fetch', which implies a read operation, but does not disclose any side effects, error behavior, or output structure. For a get operation, this is minimal but leaves ambiguity about what happens on not-found or authentication requirements.
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 concise sentence that is front-loaded with the action and resource. No wasted words and the essential information is presented immediately.
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?
Given the simplicity of the tool (one parameter, no output schema), the description is sufficient to convey the core functionality. It does not mention error cases or the return format, but these are not critical for a basic fetch operation.
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 schema already provides 100% coverage for the 'id' parameter with a description of 'Game id'. The description adds 'numeric' which is redundant with the integer type, so it adds minimal value beyond the schema.
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 specific verb 'Fetch' and resource 'GetCourt game' with a clear parameter 'numeric id'. It clearly distinguishes from the sibling 'search_games' by implying a single game lookup versus search.
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 clearly implies this tool is for fetching a specific game when you have its id, which differentiates it from search_games. However, it does not explicitly state when to use this over search_games or mention any exclusions, so it is clear but not explicit.
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.