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

monobank-mcp

v2.1.0

Published

MCP server for Monobank Open API — accounts, statements, exchange rates, jars, webhooks

Readme


Features

  • 8 Personal API tools — accounts, statements, exchange rates, jars, webhooks
  • 4 Corporate API tools — ECDSA signing, multi-user auth flow, zero rate limits
  • Smart caching — respects Monobank's 1 req/60s limit automatically
  • Retry with backoff — exponential retry on transient failures
  • Request deduplication — concurrent identical calls merged into one HTTP request
  • Resources & Prompts — exchange rates as context, spending analysis template
  • English-first docs — full API reference, agent setup guide, corporate guide

Quick Start

Get your token at https://api.monobank.ua/ (scan QR with Monobank app), then:

npx -y monobank-mcp

Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "monobank": {
      "command": "npx",
      "args": ["-y", "monobank-mcp"],
      "env": {
        "MONOBANK_TOKEN": "your_token_here"
      }
    }
  }
}

VS Code / Cursor

Add to .vscode/mcp.json or .cursor/mcp.json:

{
  "servers": {
    "monobank": {
      "command": "npx",
      "args": ["-y", "monobank-mcp"],
      "env": {
        "MONOBANK_TOKEN": "your_token_here"
      }
    }
  }
}

Claude Code

claude mcp add monobank -- npx -y monobank-mcp

Then set MONOBANK_TOKEN in your environment.

Tools

Personal API

| Tool | Description | |------|-------------| | get_client_info | Client profile, all accounts and jars with balances, IBANs | | get_statement | Transaction history for any date range (max 31 days) | | get_recent_transactions | Latest N transactions from the last X minutes | | get_exchange_rates | Current UAH/USD/EUR and 100+ exchange rate pairs | | get_jars | Savings jars with balances, goals, and progress | | set_webhook | Register a URL for real-time transaction events | | delete_webhook | Stop receiving webhook notifications | | get_webhook_status | Check currently registered webhook URL |

Corporate API

Available when MONOBANK_AUTH_MODE=corporate. See Corporate API Setup.

| Tool | Description | |------|-------------| | initiate_authorization | Start user auth flow, returns Monobank app URL | | check_authorization | Check if user approved the auth request | | get_corp_settings | Get corporate app settings (key, name, webhook) | | set_corp_webhook | Set webhook URL for the corporate application |

Resources

| Resource | URI | Description | |----------|-----|-------------| | Exchange Rates | monobank://exchange-rates | Current exchange rates as background context |

Prompts

| Prompt | Description | |--------|-------------| | spending-analysis | Analyze spending patterns for a given period (week / month / quarter) |

Rate Limits

| Endpoint | Personal API | Corporate API | |----------|-------------|---------------| | client-info | 1 req / 60s | Unlimited | | statement | 1 req / 60s | Unlimited | | currency | No limit | No limit | | webhook | No limit | No limit |

The server caches responses automatically (59s for rate-limited endpoints, 5 min for exchange rates). Retry with exponential backoff handles transient failures.

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | MONOBANK_TOKEN | Personal mode | Token from https://api.monobank.ua/ | | MONOBANK_AUTH_MODE | No | personal (default) or corporate | | MONOBANK_KEY_ID | Corporate mode | SHA1 hash of your public key | | MONOBANK_PRIVATE_KEY_PATH | Corporate mode | Path to ECDSA secp256k1 private key | | MONOBANK_PRIVATE_KEY_PEM | Corporate mode | PEM string (alternative to file path) |

Docker

docker build -t monobank-mcp .
docker run -e MONOBANK_TOKEN=your_token monobank-mcp

Development

git clone https://github.com/serhiizghama/monobank-mcp.git
cd monobank-mcp
npm install
npm run build
npm test

Documentation

License

MIT