MCP YNAB Server

get_transactions_needing_attention

List transactions that need attention based on specified filter type in a YNAB budget.

Input Schema

NameRequiredDescriptionDefault
budget_idYes
days_backNoNumber of days to look back (default 30, None for all)
filter_typeNoType of transactions to show. One of: 'uncategorized', 'unapproved', 'both'both

Input Schema (JSON Schema)

{ "properties": { "budget_id": { "title": "Budget Id", "type": "string" }, "days_back": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 30, "description": "Number of days to look back (default 30, None for all)", "title": "Days Back" }, "filter_type": { "default": "both", "description": "Type of transactions to show. One of: 'uncategorized', 'unapproved', 'both'", "title": "Filter Type", "type": "string" } }, "required": [ "budget_id" ], "title": "get_transactions_needing_attentionArguments", "type": "object" }