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

ibanforge-mcp

v1.2.2

Published

MCP server for IBANforge — IBAN validation, BIC/SWIFT lookup, Swiss BC-Nummer (1,190 SIX entries), EMI/vIBAN classification, SEPA + VoP reachability and compliance risk scoring.

Downloads

708

Readme

ibanforge-mcp

npm License

Official Model Context Protocol (MCP) server for IBANforge — IBAN validation, BIC/SWIFT lookup, Swiss BC-Nummer (1,190 SIX entries), EMI/vIBAN classification, SEPA + VoP reachability and compliance risk scoring.

Tools

| Tool | Description | Cost (USDC) | | --------------------- | ------------------------------------------------------------------------------------------------------------------------ | ----------- | | validate_iban | Validate a single IBAN (ISO 13616 mod-97), resolve BIC, classify issuer (bank/EMI/vIBAN), SEPA + VoP flags | 0.005 | | batch_validate_iban | Validate up to 100 IBANs in one call | 0.002 each | | lookup_bic | Lookup BIC/SWIFT against 121,197 GLEIF entries with LEI enrichment | 0.003 | | lookup_ch_clearing | Lookup Swiss BC-Nummer / IID against 1,190 SIX BankMaster entries (SIC, euroSIC, QR-IID) | 0.003 | | check_compliance | Full compliance check: IBAN + sanctions (OFAC/EU/UN) + SEPA Instant + VoP + risk score (0-100) | 0.02 |

Installation

Claude Desktop

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

{
  "mcpServers": {
    "ibanforge": {
      "command": "npx",
      "args": ["-y", "ibanforge-mcp"],
      "env": {
        "IBANFORGE_API_KEY": "ifk_your_optional_api_key"
      }
    }
  }
}

Cursor

Settings → MCP → Add server, or paste the same JSON above.

Claude Code (CLI)

claude mcp add ibanforge npx -- -y ibanforge-mcp

Cline / Continue.dev / Windsurf

Same JSON config — drop into the respective mcp.json.

Authentication

Three modes, in order of precedence:

  1. API key (free tier) — set IBANFORGE_API_KEY=ifk_… in the env config. 200 free requests/month.
  2. x402 micropayments (USDC on Base L2) — automatic when an x402-capable wallet is configured. See x402 discovery.
  3. Anonymous — only the demo endpoint and rate-limited public surface are accessible.

Get a free API key:

curl -X POST https://api.ibanforge.com/v1/keys/generate \
  -H "Content-Type: application/json" \
  -d '{"email":"[email protected]"}'

Examples

After adding the server, ask your AI agent:

  • "Validate the IBAN CH93 0076 2011 6238 5295 7"
  • "Look up BIC UBSWCHZH80A"
  • "Look up Swiss BC-Nummer 762"
  • "Run a compliance check on IBAN GB29 NWBK 6016 1331 9268 19"
  • "Validate these 5 IBANs in batch: …"

Configuration

| Env var | Default | Description | | --------------------- | ----------------------------- | ---------------------------------------------------------- | | IBANFORGE_API_BASE | https://api.ibanforge.com | Override for self-hosted or staging instances | | IBANFORGE_API_KEY | (unset) | Bearer ifk_* API key for the free tier or paid plans |

Data sources

  • 121,197 BIC entries from GLEIF (Global Legal Entity Identifier Foundation), enriched with LEI codes
  • 1,190 BC-Nummern from the official SIX BankMaster CSV
  • EMI / vIBAN classification from a curated dataset of 30+ known issuer prefixes
  • VoP participants from the EBA RT1 / SCT Inst directories

Links

License

Apache-2.0