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

@uqpay/mcp-server

v0.2.0

Published

MCP server for the UQPAY API

Readme

@uqpay/mcp-server

The UQPAY Model Context Protocol server gives AI assistants direct access to UQPAY's banking, issuing, and payment APIs through 84 tools.

npx -y @uqpay/mcp-server --api-key YOUR_API_KEY --client-id YOUR_CLIENT_ID --env sandbox

Setup

Claude Desktop

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

{
  "mcpServers": {
    "uqpay": {
      "command": "npx",
      "args": [
        "-y", "@uqpay/mcp-server",
        "--api-key", "YOUR_API_KEY",
        "--client-id", "YOUR_CLIENT_ID",
        "--env", "sandbox"
      ]
    }
  }
}

Gemini CLI

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "uqpay": {
      "command": "npx",
      "args": [
        "-y", "@uqpay/mcp-server",
        "--api-key", "YOUR_API_KEY",
        "--client-id", "YOUR_CLIENT_ID",
        "--env", "sandbox"
      ]
    }
  }
}

OpenAI Codex CLI

Add to ~/.codex/config.toml:

[mcp_servers.uqpay]
command = "npx"
args = [
  "-y", "@uqpay/mcp-server",
  "--api-key", "YOUR_API_KEY",
  "--client-id", "YOUR_CLIENT_ID",
  "--env", "sandbox"
]

VS Code (GitHub Copilot)

Add to .vscode/mcp.json in your workspace:

{
  "servers": {
    "uqpay": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y", "@uqpay/mcp-server",
        "--api-key", "YOUR_API_KEY",
        "--client-id", "YOUR_CLIENT_ID",
        "--env", "sandbox"
      ]
    }
  }
}

Configuration

| Argument | Env var | Default | Description | |----------|---------|---------|-------------| | --api-key | UQPAY_API_KEY | — | UQPAY API key (required) | | --client-id | UQPAY_CLIENT_ID | — | UQPAY client ID (required) | | --env | UQPAY_ENV | sandbox | sandbox or production | | --transport | — | stdio | stdio, sse, or http | | --port | — | 18080 | Port for sse and http transports |

Transports

stdio (default) — for Claude Desktop and most MCP clients.

SSE — for browser-based or remote clients. Connect at http://localhost:18080/sse.

Streamable HTTP — stateless mode, one request per call. POST to http://localhost:18080/mcp.

Security note: The SSE and HTTP transports have no built-in authentication. Any process that can reach the bound port can invoke all tools, including destructive operations, using your credentials. Only use these transports on trusted networks or behind an authenticated reverse proxy. The stdio transport (default) does not expose a network port and is not affected.

Available Tools

| Domain | Count | Capabilities | |--------|-------|-------------| | banking_* | 26 | Virtual accounts, balances, transfers, conversions, beneficiaries, payouts, exchange rates | | issuing_* | 26 | Card programs, cardholders, cards, transfers, reports, secure iframe | | payment_* | 22 | Payment intents, attempts, refunds, payouts, balances, bank accounts, settlements | | connect_* | 5 | Account creation and KYC document management | | supporting_* | 2 | File upload and download | | simulator_* | 3 | Sandbox-only: simulate card authorizations and deposits |

simulator_* tools are only registered when --env sandbox (the default).

Getting Your Credentials

  1. Sign up or log in at docs.uqpay.com
  2. Navigate to API Keys in your dashboard
  3. Copy your API Key and Client ID
  4. Use --env sandbox for testing, --env production for live transactions

Sub-accounts

All tools accept an optional on_behalf_of parameter. Pass the short account ID (e.g. "CB4488338944") to operate on a sub-account; omit to operate on the master account.

Disclaimer

@uqpay/mcp-server provides access to AI-generated content that may be inaccurate or incomplete. Users are responsible for independently verifying any information before relying on it. UQPAY makes no guarantees regarding output accuracy and is not liable for any decisions, actions, or consequences resulting from its use.

License

MIT