Skip to main content
Glama
uiux-me

upbank-mcp

by uiux-me

List Attachments

list_attachments

Retrieve transaction attachments with signed, expiring file URLs. Paginate through attachment records for Up Banking transactions.

Instructions

List transaction attachments. File URLs are signed and expire shortly.

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).

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?

With no annotations, the description carries the full behavioral burden. It usefully discloses that file URLs are signed and expire shortly, a real operational caveat not in the schema, but it says nothing about read-only safety, pagination traversal, or result shape beyond that caveat.

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?

Two short sentences with zero padding; the purpose is front-loaded and the expiry caveat follows 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?

An output schema exists, so return-value explanation is unnecessary, and pagination is covered by the schema. The description supplies the key non-schema caveat (expiring signed URLs), leaving only minor gaps such as ordering or read-only safety.

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 and page_size are fully documented in the schema, including the important note that cursor overrides other arguments. The description adds no parameter meaning beyond that, so the baseline 3 applies.

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 ('List transaction attachments'), which clearly separates it from get_attachment, the singular fetch sibling. It does not explicitly name or differentiate against that sibling, but the scope is unambiguous.

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?

No when-to-use guidance is provided. The sibling set includes get_attachment, but the description never says when to enumerate attachments versus fetch a single one, nor does it mention any prerequisite for paginating through results.

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