Get order
gambot_get_orderRetrieve a single order by ID to access its details and status.
Instructions
Get a single order by id.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| orderId | Yes |
gambot_get_orderRetrieve a single order by ID to access its details and status.
Get a single order by id.
| Name | Required | Description | Default |
|---|---|---|---|
| orderId | Yes |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden of behavioral disclosure. It does communicate a read-only, single-result operation, but it says nothing about not-found behavior, return structure, idempotency, or any side effects. The behavioral info is minimal.
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 front-loaded sentence with zero filler. Every word contributes to the tool's core purpose, which is appropriate for such a simple one-parameter getter.
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 trivial one-parameter read operation, the description is minimally viable: the agent knows what to call and which argument is required. However, it lacks any mention of output shape, error cases, or distinction from list_orders, so it is not fully complete for an agent navigating many sibling tools.
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%, so the description must compensate. It only restates that the order is fetched 'by id' and adds no meaning beyond the parameter name 'orderId' already present in the schema. No format, source, or validation context is provided.
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 and resource: 'Get a single order by id.' It clearly distinguishes this from list_orders, update_order, and other order-related tools while matching the get-by-id pattern of sibling tools.
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 gives no explicit guidance on when to use this tool versus list_orders or other alternative tools. It implies a single-order lookup but never states exclusions or conditions, leaving the agent to infer the appropriate context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.