MCP YNAB Server
The MCP YNAB Server provides access to YNAB (You Need A Budget) functionality through the Model Context Protocol, allowing you to:
View financial data: Check account balances and list transactions
Manage transactions: Create new transactions and find ones needing attention (uncategorized/unapproved)
Work with budgets: List all budgets, set a preferred budget, and access categories
Access detailed information: Retrieve specific transactions by ID and view transaction details including subtransactions
Use MCP integration: Access YNAB data via standardized resources like
ynab://accountsandynab://transactions/{account_id}
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP YNAB Servershow me my checking account balance"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-ynab
A Model Context Protocol server for the YNAB (You Need A Budget) API. Lets MCP clients (Claude Desktop, Claude Code, custom agents) read your budgets, accounts, and transactions, and create or recategorize transactions through structured tools.
Install
The project is managed with uv and
Task. All Python commands in this repo go through
uv run.
uv sync # install dependencies
task install # install the mcp-ynab CLI into the venvRelated MCP server: ABAP-ADT-API MCP-Server
Configure
Set your YNAB Personal Access Token in the environment (or in a .env file at
the repo root):
export YNAB_API_KEY=your-personal-access-tokenGet a token at https://app.ynab.com/settings/developer.
Quickstart
1. Set your API key
Code Mode is the default surface — it requires your YNAB API key:
export YNAB_API_KEY="your-key-here"Or store it in your OS keychain (the server reads it automatically).
2. Use Code Mode
By default the server exposes two tools: search (discover available operations) and execute (run a snippet against the live YNAB API).
Discover tools:
# In the search tool:
return [t for t in spec if "transaction" in t["name"]]Execute a query:
# In the execute tool:
return await ynab.read.get_budgets()3. Restore the full tool surface (optional)
To access all ~34 direct YNAB tools, set the escape-hatch preference:
set_preference: code_mode_replace_tools = falseRun the server
mcp-ynab # production
task dev # dev mode + MCP Inspector in the browserTools and resources
By default, the public MCP tool surface is intentionally small:
Tool | Purpose |
| Discover available YNAB operations without live API access |
| Run a short Python snippet against the live YNAB API |
| Health check the server |
| Inspect server preferences |
| Update preferences such as mutation or escape-hatch settings |
| Store a YNAB API key in the OS keychain |
| Remove the stored YNAB API key |
| Cache a preferred budget ID for default-targeted calls |
Use search to discover operations:
return [
{"name": tool["name"], "description": tool["description"]}
for tool in spec
if "category" in tool["name"]
]Then call the operation through execute:
categories = await ynab.read.get_categories()
return [
{"name": category.name, "balance": category.balance}
for group in categories
for category in group.categories[:LIMIT]
]Mutating operations live under ynab.write.* and require
code_mode_mutations_enabled=true:
result = await ynab.write.bulk_categorize(assignments=assignments)
return resultThe underlying direct tools still exist in the internal FastMCP registry so
Code Mode can dispatch through ynab.read.*, generate stubs, and build the
search catalog. They are hidden from the public tool list by default. Set
code_mode_replace_tools=false to restore the full direct-tool surface as an
escape hatch.
Representative internal direct tools include:
Read-only internal tools
Tool | Purpose |
| List all budgets in markdown |
| List accounts in a budget, grouped by type with summary |
| Return a single account's current balance in dollars |
| Recent transactions for an account; optional |
| Filter for uncategorized / unapproved transactions |
| All categories in a budget grouped by category group |
Mutating internal tools
Tool | Purpose |
| Create a new transaction in YNAB |
| Assign a category to an existing transaction |
| Cache a preferred budget ID for default-targeted tools |
| Cache a budget's category list locally |
For account transfers and credit-card payments, use the destination account's
transfer payee ID as payee_id when creating or updating a transaction. The
get_payees tool lists transfer payees with their Transfer Account ID.
Do not pass a Transfer : ... value as payee_name; YNAB rejects or treats
that as a regular payee instead of creating a linked transfer.
Resources
ynab://preferences/budget_id— currently preferred budget IDynab://categories/{budget_id}— cached categories for a budgetynab://code-mode/stubs— generated Python stubs for Code Modeynab://code-mode/examples— curated Code Mode snippets
Code Mode
Code Mode exposes execute, a Python execution tool for multi-step YNAB
workflows. It is enabled by default and controlled through the preferences
code_mode_enabled, code_mode_mutations_enabled, and code_mode_replace_tools.
See src/mcp_ynab/code_mode/README.md for usage, wiring instructions, and runner limits.
Development
task fmt # ruff format + check --fix
task lint # ruff check + format --check (no auto-fix)
task typecheck # mypy
task docstrings # interrogate (fails under 80%)
task test # unit tests only (default; integration excluded)
task coverage # unit tests with coverage reportIntegration tests
Integration tests are gated behind pytest.mark.integration and excluded from
the default task test run. They make real calls to your YNAB account, so they
require YNAB_API_KEY.
YNAB_API_KEY=your-token task test:integrationThe default integration suite is read-only. Tests that mutate data (create_transaction, categorize_transaction) require an additional opt-in:
YNAB_API_KEY=your-token YNAB_INTEGRATION_ALLOW_WRITES=1 \
task test:integrationLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
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/klauern/mcp-ynab'
If you have feedback or need assistance with the MCP directory API, please join our Discord server