Skip to main content
Glama

YNAB MCP Server

by dgalarza

create_transaction

Add a new financial transaction to your YNAB budget by specifying account, date, amount, and optional details like payee, category, and memo.

Instructions

Create a new transaction.

Args: budget_id: The ID of the budget (use 'last-used' for default budget) account_id: The account ID for this transaction date: Transaction date in YYYY-MM-DD format amount: Transaction amount (positive for inflow, negative for outflow) payee_name: Name of the payee (optional) category_id: Category ID (optional) memo: Transaction memo (optional) cleared: Cleared status - 'cleared', 'uncleared', or 'reconciled' (default: 'uncleared') approved: Whether the transaction is approved (default: False) Returns: JSON string with the created transaction

Input Schema

NameRequiredDescriptionDefault
account_idYes
amountYes
approvedNo
budget_idYes
category_idNo
clearedNouncleared
dateYes
memoNo
payee_nameNo

Input Schema (JSON Schema)

{ "properties": { "account_id": { "title": "Account Id", "type": "string" }, "amount": { "title": "Amount", "type": "number" }, "approved": { "default": false, "title": "Approved", "type": "boolean" }, "budget_id": { "title": "Budget Id", "type": "string" }, "category_id": { "default": null, "title": "Category Id", "type": "string" }, "cleared": { "default": "uncleared", "title": "Cleared", "type": "string" }, "date": { "title": "Date", "type": "string" }, "memo": { "default": null, "title": "Memo", "type": "string" }, "payee_name": { "default": null, "title": "Payee Name", "type": "string" } }, "required": [ "budget_id", "account_id", "date", "amount" ], "type": "object" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/dgalarza/ynab-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server