get_budget_summary
Retrieve budget summary for a specific month including income, budgeted amounts, and category details from your YNAB budget.
Instructions
Get budget summary for a specific month.
Args:
    budget_id: The ID of the budget (use 'last-used' for default budget)
    month: Month in YYYY-MM-DD format (e.g., 2025-01-01 for January 2025)
Returns:
    JSON string with budget summary including income, budgeted amounts, and category details
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| budget_id | Yes | ||
| month | Yes | 
Input Schema (JSON Schema)
{
  "properties": {
    "budget_id": {
      "title": "Budget Id",
      "type": "string"
    },
    "month": {
      "title": "Month",
      "type": "string"
    }
  },
  "required": [
    "budget_id",
    "month"
  ],
  "type": "object"
}