get_payment
Fetch details of a specific payment by ID to view its status, amount, and associated data.
Instructions
Get details of a specific payment by ID.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| payment_id | Yes | The payment ID |
Fetch details of a specific payment by ID to view its status, amount, and associated data.
Get details of a specific payment by ID.
| Name | Required | Description | Default |
|---|---|---|---|
| payment_id | Yes | The payment ID |
Changes observed during successful MCP inspections.
v1.0.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, so the safety profile is covered by structured data. The description adds nothing beyond that — no statement of behavior when the ID is unknown (error vs empty), no permission requirements, and no indication of what 'details' comprises.
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 short sentence with the resource and lookup key front-loaded and zero filler. It is appropriately sized, though it is arguably under-specified rather than truly concise.
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 read-only get-by-ID tool with annotations covering safety and no output schema, the description is minimally sufficient to invoke it correctly. It still leaves the return contents and not-found behavior unspecified, which matters given the absence of an output schema.
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?
Only one parameter exists and the schema documents it at 100% coverage ('The payment ID'), so the baseline is 3. The phrase 'by ID' in the description adds no format, prefix, or lookup semantics beyond what the schema already states.
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?
States a specific verb ('Get') and resource ('details of a specific payment') with the retrieval key ('by ID'), which is clearer than a bare name restatement. However, it does nothing to distinguish itself from the close siblings get_payment_status, list_payments, and get_off_cycle_payment, so an agent must infer the boundary on its own.
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 when-to-use guidance, no prerequisites, and no mention of the alternative tools that overlap with it (get_payment_status for status, list_payments for enumeration). Usage is only implied by the word 'specific ... by ID'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.