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

organizze-mcp

v1.0.0

Published

MCP server for Organizze API

Readme

Organizze MCP

An MCP (Model Context Protocol) server that connects Claude to the Organizze personal finance API. Ask Claude natural-language questions about your finances and it will fetch the right data automatically.

Installation

Add the server to your Claude MCP configuration:

{
  "mcpServers": {
    "organizze-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "organizze-mcp",
        "--organizze-username=YOUR_USERNAME",
        "--organizze-api-key=YOUR_API_KEY"
      ]
    }
  }
}

Available Tools

Accounts

| Tool | Description | |------|-------------| | get-bank-accounts | List all bank accounts or fetch one by ID |

Transactions

| Tool | Description | |------|-------------| | get-transactions | List transactions for a date range, optionally filtered by account or recurring status. Defaults to the current month | | get-transaction | Get full details of a single transaction by ID | | create-transaction | Create a one-time expense or income transaction |

Transfers

| Tool | Description | |------|-------------| | get-transfers | List transfers between bank accounts for a date range. Defaults to the current month | | get-transfer | Get full details of a single transfer by ID |

Credit Cards

| Tool | Description | |------|-------------| | get-credit-cards | List all credit cards or fetch one by ID | | get-credit-cards-invoices | List invoices for a credit card. Defaults to the current year | | get-credit-cards-invoice-details | Get full invoice details including line-item transactions and payment status |

Budgets and Categories

| Tool | Description | |------|-------------| | get-budgets | Get monthly or annual budget targets by category | | get-categories | List all categories or fetch one by ID | | get-spending-summary | Get spending grouped by category with totals, percentages, and optional budget comparison |

Example Prompts

What did I spend last month?
Show me all transactions from my Nubank account in March.
How close am I to my grocery budget this month?
List my credit card invoices for 2025.
I spent R$45 on lunch today — add it to my Food category.
How much did I transfer between accounts this year?

Development

npm install
npm run build   # compile TypeScript
npm test        # run the test suite
npm run test:watch  # watch mode

A CI workflow runs the build and tests automatically on every pull request.

License

MIT