Skip to main content
Glama
uiux-me

upbank-mcp

by uiux-me

Get Account

get_account

Retrieve a single Up Banking account by its unique ID to view account details.

Instructions

Retrieve a single account by id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
account_idYesThe account's unique id.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.9/5.0
Behavior2/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, yet it discloses nothing beyond the basic operation: no error behavior for a missing id, no permission/auth requirements, no note that it is a safe read. For a getter with zero annotation coverage this is a notable gap, though the presence of an output schema offsets some of the load.

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

Conciseness4/5

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

A single, front-loaded sentence with no filler or repetition. It is efficient, though its brevity borders on under-specification rather than optimal conciseness.

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

Completeness3/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 complete input schema and an output schema that documents the return, the description is minimally adequate. It omits any operational context (auth, not-found handling) but nothing structurally required to make the call is missing.

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?

Schema description coverage is 100% with a single, well-documented account_id parameter, so the schema does the heavy lifting. The description's 'by id' adds only a restatement, which is the expected baseline of 3.

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 account by id'), and the word 'single' implicitly contrasts with the sibling list_accounts. It stops short of naming the alternative explicitly, so it is clear but not fully differentiated from siblings.

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 guidance and no mention of alternatives such as list_accounts. The agent must infer that this is for fetching one known account versus browsing all accounts, which is left entirely to inference.

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