Skip to main content
Glama
collinsb1

Mercury Enhanced MCP

by collinsb1

get_treasury_accounts

Retrieve all Mercury treasury accounts with balances, status, and monthly netReturns breakdown, including dividends by security and Mercury fees.

Instructions

Retrieve all Mercury treasury accounts for the organization. Returns availableBalance, currentBalance, status (active/deleted/pending/archived), and monthly netReturns breakdown (dividends by security, Mercury fees, net return amount).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum results (1–1000, default 1000).
orderNoSort order. Defaults to asc.
end_beforeNoUUID of treasury account to end page before.
start_afterNoUUID of treasury account to start page after.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.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. It discloses returned fields (balances, status enum, netReturns breakdown) which is useful, but says nothing about pagination behavior despite limit/start_after/end_before parameters, nor auth requirements or read-only nature. For a list tool with zero annotations this is a significant gap.

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?

Two sentences, front-loaded with the core purpose followed by returned fields. Efficient with no filler, though the return-field list borders on output documentation that could live in an output schema.

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?

The description covers purpose and return fields, which is reasonable for a simple list tool. However, with no annotations, no output schema, and pagination parameters present, it omits pagination behavior and usage context, leaving meaningful gaps.

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 the schema already documents all four parameters (limit, order, end_before, start_after) with ranges, defaults, and semantics. The description adds no parameter-level detail beyond what the schema provides, 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 (Retrieve) and resource (Mercury treasury accounts) scoped to the organization. Distinguishes from siblings like get_treasury_transactions and get_treasury_statements by naming the account resource, though it doesn't explicitly contrast them.

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 guidance on when to use this tool versus alternatives such as get_accounts or get_treasury_transactions. The description implies a read/list operation but provides no context about when a caller would pick it over related tools.

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