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

@gonzih/superbank-mcp

v1.0.0

Published

Superbank instant liquidity MCP — settlement requests, payments, disbursements for AI agents

Downloads

126

Readme

@gonzih/superbank-mcp

Model Context Protocol (MCP) server for the Superbank instant liquidity API.

Superbank provides instant liquidity via API — eliminating pre-funding requirements for PSPs, neobanks, and on/off-ramp operators. Up to $25M/day, <3 second settlement, 24/7/365.

Tools

| Tool | Description | |------|-------------| | create_settlement_request | Create fiat→stablecoin, stablecoin→fiat, fiat→fiat, or stablecoin→stablecoin settlement requests | | list_settlement_requests | List all settlement requests with pagination | | get_settlement_request | Get full details of a settlement request by ID | | update_settlement_status | Update the status of a settlement request | | list_payments | List all payments | | get_payment | Get a single payment by ID | | create_disbursement | Create a disbursement to a whitelisted wallet | | list_disbursements | List all disbursements | | get_disbursement | Get a single disbursement by ID | | manage_webhooks | Full CRUD for webhook endpoints (action: create/list/get/update/delete) | | sandbox_transition | Sandbox only: transition resource status for testing |

Setup

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | SUPERBANK_API_KEY | Yes | Your Superbank API key (sk_sandbox_... for sandbox) | | SUPERBANK_ENV | No | sandbox (default) or production |

Add to Claude Code

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "superbank": {
      "command": "npx",
      "args": ["-y", "@gonzih/superbank-mcp"],
      "env": {
        "SUPERBANK_API_KEY": "sk_sandbox_your-key",
        "SUPERBANK_ENV": "sandbox"
      }
    }
  }
}

Add to Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "superbank": {
      "command": "npx",
      "args": ["-y", "@gonzih/superbank-mcp"],
      "env": {
        "SUPERBANK_API_KEY": "sk_sandbox_your-key",
        "SUPERBANK_ENV": "sandbox"
      }
    }
  }
}

Run Directly

SUPERBANK_API_KEY=sk_sandbox_your-key npx @gonzih/superbank-mcp

Usage Examples

Create a FIAT_TO_STABLECOIN settlement

Create a settlement request to send $99 USDC on Solana to wallet 7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU for John Doe ([email protected]) as remittances

The MCP will call create_settlement_request with:

{
  "type": "FIAT_TO_STABLECOIN",
  "payment_reason": "REMITTANCES",
  "amount": 99,
  "destination": {
    "is_third_party": true,
    "rail": "SOLANA",
    "currency": "USDC",
    "wallet_address": "7xKXtg2CW87d97TXJSDpbD5jBkheTqA83TZRuJosgAsU",
    "beneficiary": {
      "type": "INDIVIDUAL",
      "first_name": "John",
      "last_name": "Doe",
      "email": "[email protected]",
      "address": {
        "country_code": "US",
        "street_line1": "123 Main St",
        "city": "New York",
        "state_region_or_province": "NY",
        "postal_code": "10001"
      }
    }
  }
}

Test the sandbox flow

Walk me through a full settlement lifecycle test in sandbox

The MCP will:

  1. Create a settlement request
  2. Use sandbox_transition to advance it through states: PROCESSING → SETTLEMENT_COMPLETED → COMPLETED
  3. Show the status at each step

Set up a webhook

Set up a webhook to receive settlement events at https://my-app.com/hooks/superbank

Development

git clone https://github.com/Gonzih/superbank-mcp
cd superbank-mcp
npm install
npm run build
SUPERBANK_API_KEY=sk_sandbox_your-key node dist/index.js

License

MIT