Skip to main content
Glama
uiux-me

upbank-mcp

by uiux-me

List Accounts

list_accounts

Retrieve a customer's Up accounts with their current balances, with optional filtering by account type and ownership.

Instructions

List the customer's Up accounts with their current balances.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cursorNoA `next_cursor` or `prev_cursor` from a previous call to this tool. When set, all other arguments are ignored.
page_sizeNoNumber of records per page (1-100).
account_typeNoReturn only accounts of this type.
ownership_typeNoReturn only individual or joint accounts.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/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. It hints that balances are included in the response but says nothing about pagination behavior, auth requirements, or read-only/safe semantics that an agent would otherwise need to confirm.

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?

A single front-loaded sentence with no filler; every word carries information and the key content (accounts + balances) appears immediately.

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?

With an output schema present, the description need not explain return values, and all four optional parameters are documented in the schema. The only real gap is the absence of routing guidance relative to get_account, so the definition is nearly but not fully complete for this simple list tool.

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%, so cursor, page_size, account_type, and ownership_type are already fully documented in the schema, including the rule that other arguments are ignored when cursor is set. The description adds nothing beyond that, making the baseline of 3 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?

The description gives a specific verb ('List') and resource ('Up accounts') and adds that balances are returned, so an agent knows exactly what the tool produces. However, it does not differentiate from the sibling get_account (singular, likely one account) or explain the relationship, leaving that distinction to inference.

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 statement of when to use this tool versus alternatives such as get_account or list_transactions, and no mention of prerequisites or filtering intent. Usage is only implied by the verb 'List'.

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