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 🙏

© 2026 – Pkg Stats / Ryan Hefner

ynab-mcp-deluxe

v0.1.9

Published

You Need A Budget (YNAB) MCP server for budget automation, help with categorization, reconciliation, etc.

Readme

YNAB MCP Deluxe

An MCP server for YNAB integration built with FastMCP.

Development

Prerequisites

  • Bun - JavaScript runtime and package manager

Getting Started

bun install
bun run dev

Start the server

bun run start

Or use the dev script to interact with the server using CLI:

bun run dev

Testing

bun run test

Linting and Formatting

Run the full signal check (typescript, eslint, prettier):

bun run signal

Individual commands:

bun run ts-check       # TypeScript type checking
bun run lint           # ESLint
bun run prettier-check # Prettier check
bun run prettier       # Prettier format
bun run lint:fix       # ESLint with auto-fix

Security Considerations

⚠️ Sync History Contains Sensitive Financial Data

This server maintains a local sync history to enable efficient delta synchronization with YNAB. This history contains complete snapshots of your budget data, including:

  • Account names and balances
  • Transaction details (payees, amounts, dates, memos)
  • Category names and budgeted amounts
  • Payee information

Location: ~/.config/ynab-mcp-deluxe/sync-history/[budgetId]/

Important:

  • This data is stored unencrypted on your local filesystem
  • Anyone with access to your user account can read this data
  • Consider the security implications before using this on shared systems
  • Back up this directory if you need to preserve sync state across reinstalls

Clearing Sync History

To clear all sync history and force a fresh full sync on next access:

rm -rf ~/.config/ynab-mcp-deluxe/sync-history/

Or use the MCP tool (when available):

clear_sync_history

Environment Variables

| Variable | Required | Default | Description | | ----------------------------------- | -------- | ------- | ------------------------------------------------------------------- | | YNAB_ACCESS_TOKEN | Yes | - | YNAB API personal access token | | YNAB_BUDGET_ID | No | - | Hard constraint - only allow access to this budget (safety feature) | | YNAB_READ_ONLY | No | false | Set to true or 1 to block all write operations | | YNAB_SYNC_INTERVAL_SECONDS | No | 600 | How often to sync with YNAB (0 = always sync) | | YNAB_DRIFT_DETECTION | No | true | Enable drift detection to validate merge logic | | YNAB_ALWAYS_FULL_SYNC | No | false | Skip delta sync, always fetch full budget | | YNAB_DRIFT_CHECK_INTERVAL_SYNCS | No | 1 | Check for drift every N syncs | | YNAB_DRIFT_CHECK_INTERVAL_MINUTES | No | 0 | Check for drift every N minutes (0 = disabled) |