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

budget-planner-ai-mcp

v1.0.0

Published

AI-powered budget planner ai MCP server for agents. Supports create budget, add expense, add income. By MEOK AI Labs.

Readme

Budget Planner AI MCP Server

By MEOK AI Labs — Comprehensive budget planning with tracking, goals, and analytics

Installation

pip install budget-planner-ai-mcp

Usage

# Run standalone
python server.py

# Or via MCP
mcp install budget-planner-ai-mcp

Tools

create_budget

Create a monthly budget with category allocations.

Parameters:

  • month (str): Budget month
  • income (float): Total income
  • categories (dict): Category name to allocation amount mapping

add_expense

Record an expense transaction against a budget category.

Parameters:

  • budget_month (str): Budget month
  • category (str): Expense category
  • amount (float): Expense amount
  • description (str): Description
  • date (str): Date (YYYY-MM-DD)

add_income

Record income for a budget period.

Parameters:

  • budget_month (str): Budget month
  • source (str): Income source
  • amount (float): Income amount

get_budget_status

Get budget status for a month with category-level spending breakdown.

Parameters:

  • month (str): Budget month

get_transactions

List transactions with optional filters by month, category, and date range.

Parameters:

  • budget_month (str): Filter by month
  • category (str): Filter by category
  • start_date (str): Start date filter
  • end_date (str): End date filter
  • limit (int): Max results (default 50)

create_goal

Create a savings goal with target amount and date.

Parameters:

  • name (str): Goal name
  • target_amount (float): Target amount
  • target_date (str): Target date
  • category (str): Category (default 'Savings')

update_goal_progress

Add contribution to a savings goal.

Parameters:

  • goal_id (str): Goal identifier
  • amount (float): Contribution amount

get_goals

Get all savings goals with progress percentages.

Parameters:

  • status (str): Filter by status (default 'all')

get_analytics

Get spending analytics by category with totals and averages.

Parameters:

  • month (str): Filter by month
  • category (str): Filter by category

set_budget_alert

Set spending alert threshold for a category.

Parameters:

  • month (str): Budget month
  • category (str): Category
  • threshold_percent (float): Alert threshold percentage

get_category_spending

Get detailed spending by category for a month.

Parameters:

  • month (str): Budget month
  • category (str): Category

transfer_funds

Transfer budget allocation between categories.

Parameters:

  • month (str): Budget month
  • from_category (str): Source category
  • to_category (str): Destination category
  • amount (float): Transfer amount

rollover_unused

Roll over unused budget to next month.

Parameters:

  • source_month (str): Source month
  • target_month (str): Target month

Authentication

Free tier: 15 calls/day. Upgrade at meok.ai/pricing for unlimited access.

License

MIT — MEOK AI Labs