Skip to main content
Glama
ScottyOmega

YNAB MCP Server

largest_transactions

Find the biggest outflows in a date range, defaulting to the current month, to see where your money actually went. Excludes transfers between your own accounts.

Instructions

Lists the biggest purchases (outflows) in a date range (defaults to the current month so far) — a quick gut-check on where money actually went. Excludes transfers between your own accounts.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of transactions to return.
budget_idNoThe budget ID, or 'last-used' for the most recently used budget.last-used
since_dateNoStart date, YYYY-MM-DD. Defaults to the first of the current month.
until_dateNoEnd date, YYYY-MM-DD. Defaults to no upper bound.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.10.0

TDQS

A3.6/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 burden. It usefully discloses the current-month default and that intra-account transfers are excluded, which is genuine behavioral context. However, it does not state the sort order (implied 'biggest'), pagination, or return shape, leaving meaningful gaps.

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 tight sentences with the core action front-loaded, followed by the scope default and the transfer exclusion. Every clause carries information and nothing is wasted.

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?

For a read-only list tool with full schema coverage and no output schema, the description covers verb, scope, default range, and an important filtering rule (excludes internal transfers). Absent is any explicit description of ordering or result fields, but the essentials for correct invocation are present.

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 coverage is 100%, so the schema already documents all four parameters with defaults. The description's 'defaults to the current month so far' is consistent with the schema's since_date/until_date defaults but adds no new syntax or format detail. 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 (Lists) and resource (biggest purchases/outflows) with a clear scope (date range). It is reasonably distinguishable from siblings like top_payees and spending_by_category, though it never names those alternatives to sharpen the contrast.

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 phrase 'a quick gut-check on where money actually went' implies an exploratory use case but gives no explicit when-to-use vs when-not guidance and does not point to any alternative tool. Usage is implied rather than stated.

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