Skip to main content
Glama
uiux-me

upbank-mcp

by uiux-me

Get Transaction

get_transaction

Retrieve a single transaction by its unique ID to view hold, round-up, and cashback details.

Instructions

Retrieve a single transaction by id, including hold, round-up and cashback detail.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
transaction_idYesThe transaction's unique id.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full behavioral burden. 'Retrieve' implies a safe read-only operation and it discloses the detail fields returned, but it says nothing about lookup failures (e.g., not-found behavior), permissions, or side effects. Reasonable for a simple getter, but thin given zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

One compact sentence, front-loaded with the core action and scope and followed by the useful detail about returned fields. Every clause earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a one-parameter getter with a defined output schema, the description needn't explain return values. It covers what the tool fetches and what extra detail is included, leaving only minor gaps around error behavior.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The single parameter is fully documented in the schema (100% coverage), and the description's 'by id' aligns with the schema's transaction_id. Since the schema does the heavy lifting, the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

States a specific verb and resource ('Retrieve a single transaction by id') with a clear scope ('single'), which implicitly distinguishes it from the sibling list_transactions. It also names the extra detail returned (hold, round-up, cashback), but does not explicitly call out the sibling it differs from.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no when-to-use or when-not-to-use guidance, and no alternatives are named. An agent must infer from 'by id' that this is the point-lookup counterpart to list_transactions, with nothing stated about preferred usage or prerequisites.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.