Skip to main content
AllMCPs
BrowseBestCategoriesStackCompareToolsGuidesBlog
Log in Submit MCP

Stay in the loop

Get new MCP servers and top picks in your inbox.

AllMCPs

The open directory for discovering and installing Model Context Protocol servers.

AllMCPs on GitHub (opens in a new tab)
Launched onTiny Startupstinystartups.com
Explore
  • Browse servers
  • Best MCP servers
  • Categories
  • MCP clients
  • Agent prompts
  • Stack Builder
  • Compare servers
  • Random discovery New
  • Submit a server
  • Pricing & Boost Boost
Learn
  • Guides hub
  • What is MCP?
  • Install guide
  • Build an MCP server
  • Deploy an MCP server
  • Security guide
  • Troubleshooting
  • MCP for SEO & AEO
  • Protocol versioning
  • Blog & updates
Tools
  • All developer tools
  • Config generator
  • Config validator
  • Config auditor
  • MCP playground
  • Token calculator
  • OpenAPI β†’ MCP
  • Badge generator
For agents
  • REST API docs
  • Trust & traffic Live
  • Remote MCP server SSE β†— (opens in a new tab)
  • llms.txt β†— (opens in a new tab)
  • Catalog JSON β†— (opens in a new tab)
Company
  • About
  • Advertise Sponsor
  • Contact
  • GitHub β†— (opens in a new tab)
  • Terms
  • Privacy
AllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZoneAllMCPs VerifiedAllMCPs VerifiedFeatured on Nick LaunchesFeatured on Nick LaunchesLaunch Llama NewsletterLaunch Llama NewsletterVerified DR - allmcps.comVerified DR - allmcps.comFeatured on SaaSGrowFeatured on SaaSGrowFeatured on Twelve ToolsFeatured on Twelve ToolsFeatured on Saaspa.geFeatured on Saaspa.geFeatured on Findly.toolsFeatured on Findly.toolsFeatured on Startup FameFeatured on Startup FameFeatured on LaunchKiwiFeatured on LaunchKiwiFeatured on ScrollLaunchFeatured on ScrollLaunchFeatured on DailyPingsFeatured on DailyPingsFazier badgeFazier badgeFeatured on NewTool.siteFeatured on NewTool.siteFeatured on saasfame.comFeatured on saasfame.comDR Checker - Domain RatingDR Checker - Domain RatingListed on Turbo0Listed on Turbo0Launched on LaunchBoard - Product Launch PlatformLaunched on LaunchBoard - Product Launch PlatformList on SimilarlabsList on Similarlabshttps://codetrendy.comhttps://codetrendy.comListed on DevTool.ioFeatured on BuildlistFeatured on BuildlistLaunched on Tiny StartupsFeatured on ShowMeBestAIFeatured on ShowMeBestAIFind us on LaunchZoneFind us on LaunchZone
Β© 2026 Jackalope Digital LLC. All rights reserved.
  1. Home
  2. πŸ’» Developer Tools
  3. MCP For Ynab
M
Health: Not checked yetWe have not completed a health check for this listing yet.No health check has run yet.

MCP For Ynab

User RatingsBe the first to rate and review this MCP server! Enrichment pendingWe haven’t run our AI enrichment pass on this listing yet, so the overview, use cases, and FAQ below may be sparse or missing. We work through the catalog over time β€” check back soon.
View Repository

YNAB budget access for AI assistants: safe gated writes, month-close sessions, float attribution.

Quick Install

Automated & IDE Setup

Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β€” or use 1-click editor setup below.

Add to CursorAdd to VS Code
Manual Client & Custom JSON ConfigExpand JSON β–Ύ

Client Config & Setup

Choose your client or environment
Target File:~/Library/Application Support/Claude/claude_desktop_config.json
claude_desktop_config.json
{
  "mcpServers": {
    "mcp-for-ynab": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-for-ynab"
      ]
    }
  }
}

πŸ’‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.

Install Directory Badge Claim listing AlternativesπŸ’» More in Developer Tools

Documentation Overview

MCP for YNAB

A fast, safe MCP server for YNAB β€” full budget access for Claude and other AI assistants, read-only by default.

35 tools covering budgets, transactions, categories, payees, accounts, scheduled transactions, and server-computed analytics (spending summaries, budget health, recurring charges, income vs. expense, net worth, month-close coverage, category and credit-card float history). Writes are off unless you explicitly turn them on, risky writes require confirmation, and writes that edit or delete existing data can be undone.

Install

There are two ways to run Cove for YNAB: local (the npm package, one client at a time) or remote (one URL + token, works from Desktop, Code, and mobile identically).

Install (local)

Runs on your machine via npx. Works with Claude Code and Claude Desktop. Not reachable from mobile β€” mobile clients need the remote path below.

Claude Code:

Terminal
claude mcp add ynab -e YNAB_ACCESS_TOKEN=xxx -- npx -y @walensis/cove-mcp

Claude Desktop β€” add this to your config (claude_desktop_config.json):

config.json
{
  "mcpServers": {
    "cove": {
      "command": "npx",
      "args": ["-y", "@walensis/cove-mcp"],
      "env": {
        "YNAB_ACCESS_TOKEN": "xxx"
      }
    }
  }
}

Replace xxx with your personal access token (see Getting a token below). By default the server is read-only; add "YNAB_ALLOW_WRITES": "1" to env (or export it in Claude Code's -e) once you want the write tools β€” see Read-only by default.

Any other client that speaks MCP over stdio can run the server the same way:

Terminal
npx -y @walensis/cove-mcp

with YNAB_ACCESS_TOKEN set in its environment.

Install (remote)

One URL and a token, and it works identically from Claude Desktop, Claude Code, and claude.ai on mobile β€” no local process to keep running. This is apps/worker, a single-tenant Cloudflare Worker you deploy on your own account, with your own YNAB token: apps/worker/README.md has the full deploy runbook and how to point each kind of client at it.

The model, in short: everything in this repo β€” the engine, the stdio server, and this remote endpoint β€” is open source and free, and it's a Tool: stateless, answers when asked, does nothing on its own. Anything autonomous or metered β€” always-on float monitoring, digests, LLM-written narratives, the browser extension β€” is a Product, and lives in a separate hosted offering we run and charge for. Self-hosting this worker gets you the Tool half for free, forever; it does not include the always-on half. If you'd rather build that yourself on top of the same open engine, see docs/build-your-own-monitoring.md.

Getting a token

  1. Go to app.ynab.com and sign in.
  2. Open Account Settings β†’ Developer Settings.
  3. Under Personal Access Tokens, click New Token, confirm your password, and copy the token.
  4. Use that value as YNAB_ACCESS_TOKEN. Treat it like a password β€” anyone with it has full access to your budget for as long as it's valid.

If you'd rather not put the token directly in your MCP client config, set YNAB_ACCESS_TOKEN_FILE to the path of a file containing just the token instead.

Read-only by default, writes are opt-in

By default this server only exposes read tools β€” nothing it does can change your budget. To enable the write tools (creating/editing/deleting transactions, assigning money, etc.), set:

Code
YNAB_ALLOW_WRITES=1

in the server's environment and restart it. With writes enabled:

  • Confirmation gates: destructive or bulk operations (deleting a transaction, deleting a scheduled transaction, bulk-updating more than 5 transactions) require an explicit confirm: true β€” and bulk updates also require expected_count to match the number of rows β€” so the assistant has to show you what it's about to do before it does it.
  • Undo: writes that change existing data β€” transaction edits/deletes, category edits, budget assignments/moves, scheduled transaction edits/deletes, payee renames β€” are journaled locally, and the undo_last tool reverses the most recent one (up to 50 writes of history, stored in ~/.cove/undo.json). Writes that create something (create_category, create_payee, create_account) and import_transactions are not reversible β€” YNAB's API has no delete for categories, payees, or accounts, and no way to undo an import. Those are still journaled (so undo history stays in order), but undo_last will tell you a given entry can't be undone and move on to the write before it. See PRIVACY.md for details on that file.

Rate limits

The underlying API allows 200 requests/hour per token, shared across every app using that same token (this server, the mobile and web apps for YNAB, other integrations, etc.). This server tracks its own usage client-side and stops itself at 190 requests/hour to leave headroom for the rest of your apps, and prefers small, server-computed responses (aggregates, summaries) over dumping raw rows where it can.

Tools

ToolTypeDescription
list_plansreadList all budgets (plans): id, name, currency, last modified.
get_plan_overviewreadOrient in one call: accounts, current-month Ready to Assign, age of money, category totals.
get_monthreadFull detail for one month: Ready to Assign, age of money, every category's status.
list_transactionsreadList or aggregate transactions with filters, pagination, and field selection.
get_transactionreadFull detail for one transaction, including split subtransactions.
create_transactionswriteCreate one or more transactions in bulk, with splits and import dedup.
update_transactionswriteBulk edit transactions: categorize, approve, set cleared, edit fields.
delete_transactionwriteDelete one transaction. Requires confirmation.
import_transactionswriteTrigger import of linked-account transactions.
list_scheduled_transactionsreadAll scheduled (upcoming/recurring) transactions.
create_scheduled_transactionwriteCreate a scheduled transaction (upcoming bill or recurring income).
update_scheduled_transactionwriteUpdate a scheduled transaction.
delete_scheduled_transactionwriteDelete a scheduled transaction. Requires confirmation.
list_categoriesreadAll visible categories with balances and target status.
create_categorywriteCreate a category (and its group, if needed).
update_categorywriteRename or hide a category, or set its target.
assign_budgetwriteSet a category's assigned amount for a month.
move_moneywriteMove assigned money between two categories in a month, atomically.
list_payeesreadAll payees (id, name, transfer flag).
rename_payeewriteRename a payee across all its transactions.
create_payeewriteCreate a payee.
create_accountwriteCreate an account, with a starting balance.
spending_summaryreadServer-computed spending by category or payee, with optional period comparison.
budget_healthreadCurrent-month health check: overspending, underfunded targets, credit-card float.
detect_recurring_chargesreadFind recurring charges (subscriptions/bills) from about 13 months of history.
income_vs_expensereadMonthly income/expense/net series.
net_worth_historyreadMonthly net-worth series computed from full transaction history.
month_closereadMonth-close report for a cutoff date: credit-card coverage, blockers, overspent categories, ranked donors.
propose_coveragereadOrdered move proposals to bring every overspent category to zero for the cutoff month.
get_category_historyreadOne category's monthly series (assigned/activity/available) across a month range.
credit_card_float_historyreadPer-month credit-card float analysis over a range: owed vs. payment-category available, gap, changed flag.
backfill_ledgerlocal writeBackfill the local balance-forward ledger from history: one record per card per fully-elapsed month, with causes and the discovery summary ("carrying $X since "). Local file only (~/.cove/ledger.json) β€” never touches YNAB.
record_month_closelocal writePersist a month-close balance-forward record (per-card gaps, blockers, causes, applied moves). Local file only (~/.cove/ledger.json) β€” never touches YNAB.
get_month_close_ledgerreadRead past balance-forward records (newest first), optionally filtered by cutoff.
undo_lastwriteUndo the most recent write made through this server.

The month-close session

A guided monthly catch-up flow (Balance β†’ Plan) built on top of the tools above: it works through blockers until the coverage gap is trusted, attributes credit-card float changes to their cause, proposes donor-first coverage moves, and β€” once you approve them β€” writes a balance-forward record via record_month_close so next month's session has a baseline to compare against (get_month_close_ledger). On the very first run, the ledger is empty β€” the session runs backfill_ledger for each card first and leads with what it finds (e.g. "carrying $865.75 since 2024-08") before attributing anything further.

  • Claude Code: use the /month-close skill.
  • Claude Desktop and other MCP clients: the server exposes the same flow as the month-close-session MCP prompt.
  • Full walkthrough: docs/playbooks/month-close.md.

Remote MCP endpoint (self-host)

Read the full README β†’View source on GitHub β†’

Related MCP Servers

View all in Developer Tools View all alternatives
  • PraisonAI logoPraisonAI

    AI Agents Framework with Self Reflection and MCP support

    πŸ’» Developer Tools1 views
    Compare vs PraisonAI β†’
  • Codealive MCP logoCodealive MCP

    Semantic code search and analysis from CodeAlive for AI assistants and agents.

    πŸ’» Developer Tools0 views
    Compare vs Codealive MCP β†’
  • Labelhead Artist Momentum logoLabelhead Artist Momentum

    Trending hip-hop artist momentum scores across four cultural dimensions.

    πŸ’» Developer Tools0 views
    Compare vs Labelhead Artist Momentum β†’
  • BLEA logoBLEA

    Safe BLE diagnostics, evidence workflows, and guarded automation for AI agents.

    πŸ’» Developer Tools1 views
    Compare vs BLEA β†’

Reviews

No reviews yet β€” be the first to share how this listing worked for you.

Frequently Asked Questions about MCP For Ynab

Add the following block to your claude_desktop_config.json under mcpServers: "mcpServers": { "mcp-for-ynab": { "command": "npx", "args": ["-y", "mcp-for-ynab"] } }

AllMCPs Directory Badge

Full Badge Customizer

Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.

Badge Style:
Live Dynamic SVG PreviewMCP For Ynab AllMCPs Directory Badge
Markdown (GitHub README)
[![AllMCPs](https://allmcps.com/api/badge/mcp-for-ynab?style=directory)](https://allmcps.com/mcp/mcp-for-ynab)
HTML Embed
<a href="https://allmcps.com/mcp/mcp-for-ynab"><img src="https://allmcps.com/api/badge/mcp-for-ynab?style=directory" alt="MCP For Ynab on AllMCPs" /></a>

Technical Specs & Signals

CategoryπŸ’»Developer Tools
More technical detailsExpand β–Ύ
TransportSTDIO
RuntimeNode.js
Last updatedSep 7, 2026
Views0
Unique ViewsTotal visits recorded for this listing page on AllMCPs.
Installs0
Installs & Copy ActionsTotal times users copied install commands or configuration snippets for this server.
27Quality signal: Emerging Β· 27/100How this signal is calculated β–Ύ
Server availabilityNot measured

Not scored for repo-hosted servers β€” we can't reach the running server, only its GitHub page. Hosted MCP endpoints are health-checked live.

Verified ownership8/20
Documentation & tools11/30
Adoption & activity1/15
Community engagement0/10

A guidance signal from public completeness & health data β€” not a user rating. New listings start lower and rise as they add docs, get verified, and grow adoption. Signals we can't observe for a listing are skipped, not counted against it.

β˜… Spotlight Slot

Feature Your MCP Server

Get maximum visibility for your server across our directory, search results, and detail pages.

Spotlight Your Server

Own this project?

This directory is pre-filled from public sources. Claim via GitHub README, site badge, or DNS TXT to unlock edit access and the Official badge and attach your website β€” proof is checked automatically, then reviewed by our team.

Free dofollow backlink: add your website and place the AllMCPs badge on it β€” no claim needed. We detect it automatically and keep it verified as long as the badge stays live.

Claim & get free dofollow

Share & Embed

Add our SVG badge (dark/light directory styles) or embeddable widget to your site.

Explore more

More in πŸ’» Developer Tools β†’Best MCP servers for Developers β†’Alternatives to MCP For Ynab β†’Install in Claude DesktopInstall in CursorInstall in VS Code