Skip to main content
Glama
hs737

MCP Server for YNAB

by hs737

Scheduled transactions — Get

scheduled_transactions_get
Read-only

Get a single scheduled transaction by ID to inspect its details, including amount in milliunits (1000 = $1.00).

Instructions

[READ] Get a single scheduled transaction by ID. Amount is in milliunits (1000 = $1.00).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
plan_idNo
scheduled_transaction_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false and openWorldHint=false, so safety is covered. The description adds genuine value beyond them with the '[READ]' marker and the milliunits convention (1000 = $1.00), which prevents misreading returned amounts; it omits auth requirements and error behavior for a missing ID.

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 short sentences, front-loaded with the operation and followed by the unit convention. Nothing is wasted.

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?

An output schema exists, so return structure need not be described, and the milliunits note covers the one ambiguous output convention. However, the unexplained optional plan_id parameter leaves the definition short of complete for a 2-parameter tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% for two parameters, so the description must compensate. It clarifies scheduled_transaction_id implicitly ('by ID') but says nothing about the optional plan_id, leaving half the parameters undocumented in both schema and description.

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 gives a specific verb+resource+scope ('Get a single scheduled transaction by ID'), which cleanly separates it from the sibling scheduled_transactions_list. An agent can pick the right tool without opening the schema.

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?

Usage is only implied by 'by ID' — the description never states when to prefer this over scheduled_transactions_list or analysis_upcoming_scheduled_risks, nor any prerequisite such as needing an ID from the list call first. Adequate but with clear gaps.

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