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-quidax-crypto

v0.1.1

Published

Live crypto tickers in Naira (BTC/NGN, ETH/NGN, USDT/NGN, and more) from the Nigerian exchange Quidax, as read-only MCP tools. Public market data, keyless, no trading.

Readme

Nigeria Quidax Crypto MCP

Crypto market tickers in Naira (BTC/NGN, ETH/NGN, USDT/NGN, …) from the Nigerian exchange Quidax, exposed to AI agents as MCP tools.

Status: 🌐 Live market data + free (no API key) · read-only Package: @braynexservices/nigeria-mcp-quidax-crypto v0.1.0 · depends on @braynexservices/nigeria-mcp-core Author: Samuel Orie (Founder) · Owner: Braynex Services Ltd · License: MIT © 2026 Braynex Services Ltd — MIT licensed (copyright retained; see the NOTICE).


What it does

Returns live crypto tickers for market pairs listed on Quidax, a Nigerian exchange — the last traded price plus 24h high/low/volume, priced in the quote currency (e.g. btcngn = NGN per 1 BTC). Data comes from Quidax's public market-data API — keyless and read-only (no account, no orders, no trading). Public market data — no PII.

Tools

get_crypto_ticker

Latest ticker for one market pair.

| Param | Required | Notes | |---|---|---| | market | ✅ | Market pair id, lowercase, min 5 chars (e.g. btcngn, ethngn, usdtngn). Get valid ids from list_crypto_markets. |

Example:

// → get_crypto_ticker({ "market": "btcngn" })
"BTC/NGN last 90691052 NGN (as of 2026-07-18T09:06:00.000Z, source: quidax)"
// structuredContent: {
//   market:"btcngn", base:"BTC", quote:"NGN",
//   last:90691052, high:91686674, low:89489016, volume:0.57144386,
//   at:"2026-07-18T09:06:00.000Z", source:"quidax", retrievedAt:"…"
// }

high / low / volume are null when Quidax doesn't report them. The source field (quidax vs mock) is echoed into the text line — see Limits & notes.

list_crypto_markets

All market pairs available on the exchange, each split into base asset + quote currency. Takes no arguments.

| Param | Required | Notes | |---|---|---| | (none) | — | No input. |

Example:

// → list_crypto_markets({})
"3 markets: btcngn, ethngn, usdtngn"
// structuredContent: {
//   markets: [
//     { market:"btcngn",  base:"BTC",  quote:"NGN" },
//     { market:"ethngn",  base:"ETH",  quote:"NGN" },
//     { market:"usdtngn", base:"USDT", quote:"NGN" }
//   ],
//   count: 3
// }

The mock provider lists the 3 fixture pairs above; the live Quidax provider lists 90+ pairs.

Configuration — CRYPTO_PROVIDER

| Value | Behaviour | |---|---| | mock (default) | Offline deterministic fixtures (btcngn, ethngn, usdtngn) — synthetic prices, for dev/eval | | quidax | Live tickers from Quidax's public market-data API (keyless). Set this for real prices. |

No API key required.

Run it

npm install && npm run build      # from repo root

npm run smoke      -w @braynexservices/nigeria-mcp-quidax-crypto   # offline (mock)
npm run smoke:live -w @braynexservices/nigeria-mcp-quidax-crypto   # live (real Quidax API)

CRYPTO_PROVIDER=quidax npm run start:stdio -w @braynexservices/nigeria-mcp-quidax-crypto   # serve over stdio, live

MCP Inspector (interactive GUI):

CRYPTO_PROVIDER=quidax npx @modelcontextprotocol/inspector node lanes/quidax-crypto/dist/stdio.js

Claude Desktop / Code — add to your MCP config (needs Node.js ≥ 20):

{
  "mcpServers": {
    "nigeria-quidax-crypto": {
      "command": "npx",
      "args": ["-y", "@braynexservices/nigeria-mcp-quidax-crypto"],
      "env": { "CRYPTO_PROVIDER": "quidax" }
    }
  }
}

Running from a clone instead: "command": "node", "args": ["/path/to/nigeria-mcp/lanes/quidax-crypto/dist/stdio.js"]. Then ask, e.g., "What's the BTC to naira price on Quidax right now?"

Limits & notes

  • Default provider is mock → SYNTHETIC prices, not the live market. With CRYPTO_PROVIDER unset (or mock), the tools return deterministic fixture prices — useful for dev/eval, not real quotes. Every result carries its origin: the text line ends with source: mock vs source: quidax, and structuredContent.source says the same. So a synthetic price can never be mistaken for a live quote. Set CRYPTO_PROVIDER=quidax for real prices.
  • Informational, not trading advice. These are read-only market tickers. No orders, positions, or account access — this lane cannot trade.
  • Live source is Quidax public market data (https://app.quidax.io/api/v1), keyless. 15s fetch timeout; unknown pairs return an actionable "not found" (call list_crypto_markets), transient failures suggest CRYPTO_PROVIDER=mock.
  • Numbers: prices/volume are numeric; high/low/volume may be null when the exchange omits them. at is the ISO-8601 ticker snapshot time; retrievedAt is when this server fetched it.

Verification

npm run verify (repo root) → build + all lane smokes + eval. This lane: offline smoke (mock, btcngn pinned) + smoke:live against the real Quidax API, independent code-review (string-encoded prices parsed, source surfaced in text so mock is never passed off as live).