get_transactions
Retrieve recent transactions for a specific account and budget using the MCP YNAB Server. Input budget_id and account_id to access transaction data.
Instructions
Get recent transactions for a specific account in a specific budget.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
account_id | Yes | ||
budget_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"account_id": {
"title": "Account Id",
"type": "string"
},
"budget_id": {
"title": "Budget Id",
"type": "string"
}
},
"required": [
"budget_id",
"account_id"
],
"title": "get_transactionsArguments",
"type": "object"
}