Skip to main content
Glama
ScottyOmega

YNAB MCP Server

list_all_account_balances

View account balances across all YNAB budgets at once, grouped by budget, to get a full net-worth snapshot without opening each budget separately.

Instructions

Lists account balances across every budget on this account, grouped by budget. Useful for a full net-worth view without checking each budget individually.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.9.0

TDQS

A3.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 burden. It mentions that results are grouped by budget, which is useful, but it doesn't disclose whether this is a read-only operation, whether it requires authentication, how large the result set might be, or what the response format looks like. For a zero-annotation tool, 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.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, both front-loaded with the core action and scope, and the second sentence adds practical context without waste. Every sentence earns its place.

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?

For a parameterless read tool with no annotations and no output schema, the description provides the essential purpose and use case but omits important behavioral details like read-only nature, authentication requirements, and return shape. It is adequate but not fully complete.

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?

The tool takes zero parameters, so per the rubric the baseline is 4. The description correctly implies no filtering or input is needed, consistent with the empty schema.

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 (Lists) and resource (account balances) with clear scope (across every budget, grouped by budget). This is clearly distinguishable from siblings like list_budgets or get_month_summary, which serve different aggregation purposes.

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

Usage Guidelines4/5

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

The description gives clear context: useful for a full net-worth view without checking each budget individually. This implies when to use it (when you need an aggregate net-worth snapshot). However, it doesn't explicitly name an alternative sibling tool or state when not to use it.

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