Skip to main content
Glama
hs737

MCP Server for YNAB

by hs737

Money movement groups — List

money_movement_groups_list
Read-only

List money movement groups for a YNAB plan to tie movements from one action together; use delta sync to fetch only changes since a prior server knowledge value.

Instructions

[READ] List money movement groups for a plan. A group ties together the movements made in a single action; it carries no amount of its own. Join movements to a group on money_movement_group_id. Supports delta sync: pass last_knowledge_of_server — the server_knowledge value any earlier response returned — and YNAB sends only what changed since, which is how a long session stays current without re-reading everything. changes_since does the same across categories, months and transactions in one call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
plan_idNo
last_knowledge_of_serverNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already cover the safety profile (readOnlyHint=true, destructiveHint=false, openWorldHint=false), so the bar is lower, and the description still adds meaningful non-obvious behavior: groups carry no amount, movements join on money_movement_group_id, and last_knowledge_of_server must be fed the server_knowledge value from a prior response. It does not mention pagination or rate limits, but the delta-sync contract is the important disclosure here.

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?

Three sentences, front-loaded with the read tag and the core action, then the domain model, then the sync mechanics. Every sentence carries information. The closing clause about changes_since is slightly tangential for a list endpoint but earns its place as sibling routing.

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?

An output schema exists, so return values need not be spelled out, and the description covers the object semantics, the join key, and the incremental-read contract. The gaps are minor: what happens when plan_id is omitted (all plans vs. error) and whether results are paginated are not addressed.

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 0% and there are no descriptions on either property, so the description must compensate — and it does for the harder parameter, explaining exactly what last_knowledge_of_server expects ('the server_knowledge value any earlier response returned') and why. plan_id is only implied by the phrase 'for a plan', and its null default is never explained.

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 ('List money movement groups for a plan') and then defines the domain object itself: 'A group ties together the movements made in a single action; it carries no amount of its own.' That definition cleanly separates it from money_movements_list and money_movement_groups_list_by_month, which an agent cannot infer from the name alone.

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?

It gives real guidance for the delta-sync path ('pass last_knowledge_of_server ... YNAB sends only what changed since') and names changes_since as the cross-entity alternative. But it never says when to pick this tool over money_movement_groups_list_by_month or money_movements_list, nor whether plan_id is required in practice, leaving the core routing decision 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.