boond_purchases_get
Retrieve complete purchase details by ID to access specific transaction data.
Instructions
Get a purchase by ID
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Retrieve complete purchase details by ID to access specific transaction data.
Get a purchase by ID
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. 'Get' implies a read-only operation, but the description does not mention error behavior, authentication requirements, return format, or what happens when the ID does not exist.
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 no wasted words. It immediately conveys the tool's purpose and the key qualifier ('by ID') without any redundancy.
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 one-parameter get operation, the description is minimally sufficient to invoke the tool correctly. However, with no annotations and no output schema, it leaves return value details and failure behavior unstated, so it is adequate but not complete.
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 documents the single 'id' parameter with type string and minLength 1. The description's 'by ID' adds minimal semantic value beyond the schema and does not compensate for the 0% schema description coverage by explaining how the ID is used or where to find it.
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 clearly states the action (get) and resource (a purchase), and the 'by ID' qualifier distinguishes it from search tools like boond_purchases_search. It does not explicitly differentiate itself from sibling get tools, but the resource name and verb make the purpose obvious.
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 guidance on when to use this tool versus alternatives such as boond_purchases_search or boond_purchases_create. The appropriate usage (when you already know a purchase ID) is only implied by the tool name and description, not stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.