Get Payment
get_paymentRead a payment for which the participant owns the buyer or seller wallet.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| paymentId | Yes |
get_paymentRead a payment for which the participant owns the buyer or seller wallet.
| Name | Required | Description | Default |
|---|---|---|---|
| paymentId | Yes |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds an access/eligibility constraint about wallet ownership, which is useful, but it does not explain what happens if ownership is missing, auth requirements, or return behavior.
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?
One sentence with no fluff. The core action is front-loaded ('Read a payment') and the qualifying condition is appended without waste.
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 read operation with annotations present, the description provides enough to understand basic scope and access. It omits return-value details and doesn't orient the agent among the many sibling get_* tools, but the low complexity keeps the gap moderate.
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 needs to compensate. It clarifies that paymentId refers to a payment in a buyer/seller context, but it does not define the paymentId format, source, or additional semantics beyond the property name and type.
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 ('Read') and resource ('a payment'), and adds an eligibility condition (participant owns buyer or seller wallet). This clearly identifies the tool's purpose, though it does not explicitly contrast it with similar siblings such as get_payment_request.
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 a clear usage condition: only read payments where the participant owns the buyer or seller wallet. This implies when not to use it, but it does not name alternative tools or explicitly describe exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.