1. Conduid
  2. Developer Tools
  3. YNAB
MCP server · Developer Tools

YNAB

A Model Context Protocol (MCP) server for integrating with YNAB (You Need A Budget), allowing AI assistants to securely access and analyze your financial data.

Unclaimed last commit a year ago devtools
42Fair

Scored 4 days ago · breakdown

About YNAB

YNAB is an MCP server published by ChuckBryan in the Developer Tools category: a Model Context Protocol (MCP) server for integrating with YNAB (You Need A Budget), allowing AI assistants to securely access and analyze your financial data. It has been installed 0 times through Conduid.

The repository has 12 stars and 2 forks, with the last commit a year ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx ynabmcpserver

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about YNAB

Powered by Claude · Grounded in docs

I know everything about YNAB. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

Releases

v1.5.2v1.5.2 · 14 May 2025[1.5.2](https://github.com/ChuckBryan/ynabmcpserver/compare/v1.5.1...v1.5.2) (2025-05-14) Bug Fixes settings:** correct commit message instructions for clarity…
v1.5.1v1.5.1 · 13 May 2025[1.5.1](https://github.com/ChuckBryan/ynabmcpserver/compare/v1.5.0...v1.5.1) (2025-05-13) Bug Fixes improve formatting and readability in publish-docker.ps1 script…
v1.4.0v1.4.0 · 13 May 2025[1.4.0](https://github.com/ChuckBryan/ynabmcpserver/compare/v1.3.0...v1.4.0) (2025-05-13) Features update Docker publishing configuration and enhance version handling in scripts…
v1.3.0v1.3.0 · 13 May 2025[1.3.0](https://github.com/ChuckBryan/ynabmcpserver/compare/v1.2.0...v1.3.0) (2025-05-13) Features enhance Docker publishing script with environment variable logging and verification steps…
v1.2.0v1.2.0 · 13 May 2025[1.2.0](https://github.com/ChuckBryan/ynabmcpserver/compare/v1.1.0...v1.2.0) (2025-05-13) Features bump the feature ([45b8ae1](https://github.com/ChuckBryan/ynabmcpserver/commit/45b8ae1fc6bd744da234b4ba4ffc323bb0d043a4))

README

YNAB MCP Server

A Model Context Protocol (MCP) server for integrating YNAB (You Need A Budget) with AI systems. This project allows AI assistants to securely access and analyze your YNAB financial data.

Build Docker Image Platform smithery badge

What is MCP?

The Model Context Protocol (MCP) is a standard that allows AI assistants to interact with external tools and services. It enables AI models like Claude to:

  1. Access real-time data beyond their training cutoff date
  2. Call functions in external systems
  3. Interact with APIs securely
  4. Provide contextual analysis based on your personal data

Instead of just answering based on general knowledge, MCP allows AI to work with your specific information.

About YNAB MCP Server

This project creates a secure bridge between your YNAB financial data and AI assistants. It allows you to:

  • Query your budget information
  • Analyze spending patterns
  • Check account balances
  • Track financial goals
  • Get insights about your financial habits

All while keeping your YNAB API token secure and your financial data private.

Features

This MCP server implements a comprehensive set of tools for interacting with the YNAB API:

User and Budget Information

  • GetUserInfo - Retrieve your YNAB user ID
  • ListBudgets - Get all budgets in your YNAB account
  • GetBudgetDetails - Detailed information about a specific budget
  • GetBudgetMonths - List budget months

Categories and Transactions

  • ListCategories - All categories in a budget
  • GetCategoryDetails - Detailed information about a category
  • SearchTransactions - Find transactions with custom filters
  • ListAccountTransactions - Get transactions for a specific account

Accounts and Payees

  • ListAccounts - Get all accounts in a budget
  • ListPayees - Get all payees in a budget

Financial Analysis

  • GetCurrentMonthSnapshot - Summary of the current month's budget
  • GetRecentActivitySummary - Summary of recent financial activity
  • GetIncomeVsExpenseSummary - Compare income to expenses over time

Getting Started

Prerequisites

  • YNAB Account with API access
  • An MCP-compatible client (e.g., Claude for Desktop)
  • Either:

Installation

Installing via Smithery

To install YNAB Server for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @ChuckBryan/ynabmcpserver --client claude

Click one of these buttons to automatically install the YNAB MCP Server in VS Code:

Install in VS Code Install in VS Code Insiders

This will:

  1. Configure VS Code to use the YNAB MCP Server Docker image
  2. Prompt you for your YNAB API token when needed
  3. Allow you to start the server with F5 or the Run menu

Once installed, you can start the server by pressing F5 in VS Code or using the Run menu. When prompted, enter your YNAB API token and the server will start automatically in a Docker container.

Available Environment Variables

  • YNAB_API_TOKEN: Your YNAB API token (required)

Security

This MCP server runs locally on your machine and does not share your YNAB API token with third parties. The API token is only used to communicate directly with the YNAB API.

Development

Project Structure

YnabMcpServer/
├── .vscode/            # VS Code configuration
├── docs/               # Documentation
├── requests/           # HTTP request samples for testing
├── scripts/            # Utility scripts
└── src/                # Source code
    └── YnabMcpServer/  # Main project
        ├── Configuration/ # Configuration classes
        ├── Generated/     # Generated API client code
        ├── Services/      # Service implementations
        ├── Tools/         # MCP tool implementations
        └── Program.cs     # Application entry point

Extending the Server

To add new MCP tools:

  1. Add new methods to YnabTools.cs
  2. Decorate them with [McpServerTool] and [Description] attributes
  3. Rebuild and restart the server

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Versioning and Release Process

This project uses semantic-release for automated versioning and releases. See VERSIONING.md for details on the commit message format and release process.

Acknowledgments

README mirrored from the source repository 4 days ago. The original is authoritative.

Questions

About YNAB

How do I install YNAB?

Run npx ynabmcpserver, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is YNAB safe to use with an AI agent?

Its trust score is 42 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is YNAB still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.