Skip to main content
Glama
collinsb1

Mercury Enhanced MCP

by collinsb1

get_account_statements

Retrieve monthly statements for a Mercury checking or savings account, including download links, balances, account numbers, and EINs. Filter by date within a 3-month range.

Instructions

Retrieve monthly statements for a specific Mercury account. Returns statement list with downloadUrl, startDate, endDate, endingBalance, accountNumber, and EIN. Note: treasury and credit accounts are NOT supported — use get_treasury_statements instead. Maximum date range via start/end parameters is 3 months.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endNoFilter statements with period start on or before this date (YYYY-MM-DD).
limitNoMaximum results (1–1000, default 1000).
orderNoSort order. Defaults to desc.
startNoFilter statements with period start on or after this date (YYYY-MM-DD).
accountIdYesThe Mercury account UUID (checking/savings only, not treasury or credit).
end_beforeNoUUID of statement to end page before.
start_afterNoUUID of statement to start page after.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.6/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does add real context: the returned fields (downloadUrl, startDate, endDate, endingBalance, accountNumber, EIN), the account-type eligibility restriction, and the 3-month range limit. It stops short of disclosing auth requirements, rate limits, or pagination behavior, which keeps it below a 5.

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?

Three front-loaded sentences: purpose first, then return payload, then the exclusion and range constraints. Every sentence carries operative information and there is no filler.

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?

No output schema exists, but the description enumerates the returned fields, and no annotations exist to cover constraints, so the description must carry that load — which it largely does. The remaining gap is pagination/cursor behavior for end_before/start_after, which is left to the schema.

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

Parameters4/5

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

Schema description coverage is 100%, so the baseline is 3 and the schema already documents accountId, start, end, limit, order, and paging cursors. The description adds a constraint not present in the schema (the 3-month maximum range for start/end), which meaningfully augments the parameter semantics.

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

Purpose5/5

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

States a specific verb and resource ('Retrieve monthly statements') and scopes it to 'a specific Mercury account'. It explicitly contrasts with the sibling get_treasury_statements and rules out treasury/credit accounts, so an agent can distinguish it without opening the schema.

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

Usage Guidelines5/5

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

Gives an explicit when-not-to-use ('treasury and credit accounts are NOT supported'), names the alternative tool to use instead, and states a hard usage constraint (max 3-month range via start/end). This is exactly the when/when-not/alternatives guidance required.

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