MCP YNAB Server

create_transaction

Create a new transaction in YNAB.

Input Schema

NameRequiredDescriptionDefault
account_idYes
amountYesAmount in dollars
category_nameNo
memoNo
payee_nameYes

Input Schema (JSON Schema)

{ "properties": { "account_id": { "title": "Account Id", "type": "string" }, "amount": { "description": "Amount in dollars", "title": "Amount", "type": "number" }, "category_name": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Category Name" }, "memo": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "title": "Memo" }, "payee_name": { "title": "Payee Name", "type": "string" } }, "required": [ "account_id", "amount", "payee_name" ], "title": "create_transactionArguments", "type": "object" }