npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

mcp-ynab

v1.1.0

Published

Model Context Protocol server for YNAB integration

Readme

MCP YNAB Server

A Model Context Protocol (MCP) server for integrating with You Need A Budget (YNAB) API.

Description

This MCP server provides a bridge between AI assistants and the YNAB budgeting application, allowing for seamless budget management and financial data access through conversational interfaces.

Features

  • Tools: Placeholder tools for YNAB operations (to be implemented)
  • Resources: Access to YNAB budget data (to be implemented)
  • Prompts: Budget-related prompt templates (to be implemented)

Installation

  1. Clone this repository:

    git clone https://github.com/richdooz/mcp-ynab.git
    cd mcp-ynab
  2. Install dependencies:

    npm install
  3. Set up environment variables:

    cp .env.example .env
    # Edit .env with your YNAB API key and other configuration

Configuration

Create a .env file based on .env.example and configure the following:

  • YNAB_API_KEY: Your YNAB Personal Access Token
  • YNAB_BUDGET_ID: (Optional) Specific budget ID to target
  • Other configuration options as needed

Usage

Development

npm run dev

Production

npm start

As an MCP Server

This server is designed to be used with MCP-compatible clients. Configure your MCP client to use this server:

{
  "mcpServers": {
    "ynab": {
      "command": "node",
      "args": ["path/to/mcp-ynab/src/index.js"]
    }
  }
}

Development

This is currently a placeholder implementation. The following areas need development:

Tools to Implement

  • Budget retrieval
  • Account management
  • Transaction operations
  • Category management
  • Goal tracking

Resources to Implement

  • Budget summaries
  • Account balances
  • Transaction histories
  • Category spending reports

Prompts to Implement

  • Budget analysis prompts
  • Spending advice templates
  • Financial goal setting

API Reference

Tools

Currently includes placeholder tools. Real YNAB integration tools will be added.

Resources

Currently includes placeholder resources. Real YNAB data resources will be added.

Prompts

Currently includes placeholder prompts. Real budget-related prompts will be added.

Contributing

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Add tests if applicable
  5. Submit a pull request

License

MIT License - see LICENSE file for details

Requirements

  • Node.js >= 18.0.0
  • YNAB Personal Access Token
  • MCP-compatible client

Support

For issues and questions, please use the GitHub issue tracker.