Navigation
YNAB-MCP-Server: Automates Financial Modeling, Eliminates Guesswork - MCP Implementation

YNAB-MCP-Server: Automates Financial Modeling, Eliminates Guesswork

ynab-mcp-server: Automate YNAB’s financial modeling, slashing manual work while keeping budgets razor-sharp—smarter goals, less guesswork. Built for the obsessed.

Research And Data
4.1(17 reviews)
25 saves
11 comments

38% of users reported increased productivity after just one week

About YNAB-MCP-Server

What is YNAB-MCP-Server: Automates Financial Modeling, Eliminates Guesswork?

YNAB-MCP-Server is an MCP-compliant tool server built using the mcp-framework, designed to integrate with YNAB (You Need A Budget) financial software. It enables AI systems to interact directly with your YNAB budgets through structured API commands, removing manual data entry and reducing guesswork in financial planning. The server starts with read-only access to budgets and categories, with future support for modifying budget data.

How to Use YNAB-MCP-Server: Automates Financial Modeling, Eliminates Guesswork?

1. Obtain a YNAB Personal Access Token from the YNAB API portal.
2. Clone or download the server repository.
3. Install dependencies via npm install and build the project with npm run build.
4. Configure your AI platform (e.g., Claude Desktop) to connect to the server using specified CLI commands or npm package references.

YNAB-MCP-Server Features

Key Features of YNAB-MCP-Server: Automates Financial Modeling, Eliminates Guesswork?

  • Structured API integration with YNAB's budget data
  • Modular tool architecture for adding custom financial modeling functions
  • Support for both read and future write operations on budget data
  • Automatic tool discovery upon server startup
  • Compatibility with MCP framework standards for AI interoperability

Use Cases of YNAB-MCP-Server: Automates Financial Modeling, Eliminates Guesswork?

1. Automated generation of budget reports through AI queries
2. Smart expense categorization suggestions powered by machine learning
3. Real-time budget impact analysis for "what-if" financial scenarios
4. Integration with chatbots for natural language budget tracking

YNAB-MCP-Server FAQ

FAQ from YNAB-MCP-Server: Automates Financial Modeling, Eliminates Guesswork?

Q: How do I extend server functionality?
A: Use the provided tool development framework to create custom modules following the MCP interface standards.

Q: Can I modify budgets through this server?
A: Write operations are planned but currently in development - current deployment focuses on read-only access.

Q: What platforms work with this server?
A: Designed for compatibility with MCP-compliant AI systems like Claude Desktop, with generic API access for custom integrations.

Q: How is data security handled?
A: Requires YNAB API tokens for authentication, recommends using environment variables for sensitive credentials.

Content

ynab-mcp-server

A Model Context Protocol (MCP) server built with mcp-framework. This MCP provides tools for interacting with your YNAB budgets setup at https://ynab.com

In order to have an AI interact with this tool, you will need to get your Personal Access Token from YNAB: https://api.ynab.com/#personal-access-tokens

The goal of the project is to be able to interact with my YNAB budget via an AI conversation. I'm going to start with read only actions and then work toward being able to make modifications to the budget as well.

Available tools:

  • list all budgets
  • Get specific budget

Next:

  • Get budget categories

Quick Start

# Install dependencies
npm install

# Build the project
npm run build

Project Structure

ynab-mcp-server/
├── src/
│   ├── tools/        # MCP Tools
│   │   └── ExampleTool.ts
│   └── index.ts      # Server entry point
├── package.json
└── tsconfig.json

Adding Components

The YNAB sdk describes the available api endpoints: https://github.com/ynab/ynab-sdk-js.

YNAB open api specification is here: https://api.ynab.com/papi/open_api_spec.yaml. This can be used to prompt an AI to generate a new tool. Example prompt for Cursor Agent:

create a new tool based on the readme and this openapi doc: @https://api.ynab.com/papi/open_api_spec.yaml

The new tool should get the details for a single budget

You can add more tools using the CLI:

# Add a new tool
mcp add tool my-tool

# Example tools you might create:
mcp add tool data-processor
mcp add tool api-client
mcp add tool file-handler

Tool Development

Example tool structure:

import { MCPTool } from "mcp-framework";
import { z } from "zod";

interface MyToolInput {
  message: string;
}

class MyTool extends MCPTool<MyToolInput> {
  name = "my_tool";
  description = "Describes what your tool does";

  schema = {
    message: {
      type: z.string(),
      description: "Description of this input parameter",
    },
  };

  async execute(input: MyToolInput) {
    // Your tool logic here
    return `Processed: ${input.message}`;
  }
}

export default MyTool;

Publishing to npm

  1. Update your package.json:
* Ensure `name` is unique and follows npm naming conventions
* Set appropriate `version`
* Add `description`, `author`, `license`, etc.
* Check `bin` points to the correct entry file
  1. Build and test locally:

    npm run build

npm link
ynab-mcp-server  # Test your CLI locally
  1. Login to npm (create account if necessary):

    npm login

  2. Publish your package:

    npm publish

After publishing, users can add it to their claude desktop client (read below) or run it with npx

## Using with Claude Desktop

### Local Development

Add this configuration to your Claude Desktop config file:

**MacOS**: `~/Library/Application Support/Claude/claude_desktop_config.json`
**Windows**: `%APPDATA%/Claude/claude_desktop_config.json`

```json
{
  "mcpServers": {
    "ynab-mcp-server": {
      "command": "node",
      "args":["/absolute/path/to/ynab-mcp-server/dist/index.js"]
    }
  }
}

After Publishing

Add this configuration to your Claude Desktop config file:

MacOS : ~/Library/Application Support/Claude/claude_desktop_config.json Windows : %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "ynab-mcp-server": {
      "command": "npx",
      "args": ["ynab-mcp-server"]
    }
  }
}

Building and Testing

  1. Make changes to your tools
  2. Run npm run build to compile
  3. The server will automatically load your tools on startup

Learn More

Related MCP Servers & Clients