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

@braynexservices/nigeria-mcp-bank-account

v0.2.6

Published

Nigeria Bank Resolve MCP — resolve a NUBAN + bank code to the account name, and list banks (Paystack, free), as MCP tools.

Readme

lanes/bank-account/ — Bank-account resolve

Lane: Bank-account resolve · Phase: 1 · Status:LIVE (Paystack, free) · v0.2.2 Package: @braynexservices/nigeria-mcp-bank-account (depends on @braynexservices/nigeria-mcp-core) · Owner: Braynex Services Ltd · License: MIT

Live via Paystack (BANK_PROVIDER=paystack + PAYSTACK_SECRET_KEY). Verified: 255 banks + account resolution. npm run smoke:live -w @braynexservices/nigeria-mcp-bank-account. Mock stays the default for offline/eval.

Resolves a Nigerian NUBAN (10-digit account number) + bank code → the registered account name, through the core provider seam. Mock is the default so it runs with zero signup.

Tools

| Tool | Input | Returns | |---|---|---| | resolve_bank_account | { account_number (10 digits), bank_code } | NormalizedBankAccountaccountName, bankCode, bankName?, source, retrievedAt | | list_banks | {} | { banks: [{ name, code }] } — bank-code lookup helper |

Providers (BANK_PROVIDER)

| Key | Source | Cost | Notes | |---|---|---|---| | mock (default) | local fixtures | free | zero signup; deterministic | | paystack | Paystack /bank/resolve + /bank | free | needs PAYSTACK_SECRET_KEY; fails loudly with a hint if unset |

Quickstart

# from repo root
npm install
npm run build -w @braynexservices/nigeria-mcp-core          # build core first (lanes import its dist)
npm run build -w @braynexservices/nigeria-mcp-bank-account

npm run smoke -w @braynexservices/nigeria-mcp-bank-account   # in-memory MCP e2e (exits non-zero on failure)
npm run start:stdio -w @braynexservices/nigeria-mcp-bank-account   # serve over stdio (default mock provider)

# live Paystack (free key required):
BANK_PROVIDER=paystack PAYSTACK_SECRET_KEY=sk_... npm run start:stdio -w @braynexservices/nigeria-mcp-bank-account

Claude Desktop / Code — add to your MCP config (needs Node.js ≥ 20 + a free Paystack secret key):

{
  "mcpServers": {
    "nigeria-bank-resolve": {
      "command": "npx",
      "args": ["-y", "@braynexservices/nigeria-mcp-bank-account"],
      "env": { "BANK_PROVIDER": "paystack", "PAYSTACK_SECRET_KEY": "sk_..." }
    }
  }
}

Running from a clone instead: "command": "node", "args": ["/path/to/nigeria-mcp/lanes/bank-account/dist/stdio.js"]. Then ask, e.g., "Whose account is 0123456789 at GTBank?"

Status

  • mock provider verified (build + smoke + not-found path).
  • paystack adapter live-verified (npm run smoke:live): bank list + account resolution against the real API. Fails loudly with an actionable hint when the key is missing or wrong; account resolutions (PII) are never cached.