Skip to main content
Glama

List account numbers

increase_list_account_numbers
Read-only

List account numbers (deposit routing/account number pairs). Increase API: GET /account_numbers. Filter by account and status (sent as status.in).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1–100. Default 100.
cursorNoOpaque pagination cursor from a previous response's next_cursor.
statusNoStatus filter (sent as status.in), e.g. active | disabled | canceled.
account_idNoOnly account numbers for this account id.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4/5.0
Behavior4/5

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

The description adds behavioral context beyond the readOnlyHint annotation by specifying the exact API path (GET /account_numbers) and detailing how filters are sent (e.g., 'status.in'). It does not cover all behaviors like pagination details (though the schema covers limit and cursor) or rate limits, but the added info is valuable for understanding the API interaction.

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?

The description is brief, at two sentences, and front-loads the core action. While it could be more structured (e.g., using bullet points for filters), it avoids unnecessary detail and is efficiently written. Every sentence contributes value, and there is no redundancy.

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?

Given the tool's simplicity (list operation), the description provides the essential purpose and filtering context. However, it lacks details about the response format or pagination behavior beyond the cursor parameter. Since there is no output schema, the description could have included what the response contains (e.g., object array with id, routing, account number). Still, for a straightforward list tool, it is minimally adequate.

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?

With 100% schema description coverage, the baseline is 3. The description adds value by clarifying that the status parameter is sent as 'status.in' in the query string, which is not obvious from the schema alone. This helps the agent correctly construct the API call. The other parameters are adequately described in the schema, so the overall parameter semantics are well-served.

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?

The description clearly states the verb 'List', resource 'account numbers', and explains they are 'deposit routing/account number pairs'. It also mentions the API endpoint and filtering options, making the purpose unmistakable. This distinguishes it from sibling tools like 'increase_list_accounts' which lists accounts themselves.

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

Usage Guidelines3/5

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

The description indicates the tool lists account numbers with optional filters, implying its use for retrieving such data. However, it does not provide explicit guidance on when to use this tool versus alternatives (e.g., when account IDs are known vs. needing to list all), nor does it state when not to use it. The context of sibling tools helps but the description itself lacks explicit usage recommendations.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation5/5

Each tool targets a distinct resource type (account, account number, ACH transfer, etc.) with clear verb_noun naming, making them easily distinguishable.

Naming Consistency5/5

All tools follow a consistent `increase_verb_noun` pattern in snake_case, with verbs like create, get, list, lookup.

Tool Count4/5

18 tools is slightly above the typical 3-15 range, but the scope of banking operations (accounts, transfers, transactions, cards, entities) justifies the count.

Completeness2/5

The server is heavily read-only with only one mutation (create_external_account). Missing create/update/delete for accounts, transfers, cards, etc., which limits its usefulness for full banking workflows.