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

@vaiu/mcp-server

v1.0.2

Published

MCP server for the Vaiu payment platform – exposes Vaiu payment tools to Claude, Cursor, and other MCP clients via stdio

Downloads

26

Readme

@vaiu/mcp-server

An MCP-compliant stdio server that bridges any MCP client (Claude Desktop, Cursor, etc.) to the Vaiu payment platform.

The server authenticates with your Vaiu credentials on startup — no pre-obtained JWT or agent registration required.

What it exposes

| Tool | Description | |------|-------------| | create_cash_token | Create a cash token another user can redeem | | create_invoice_token | Request payment via invoice token | | redeem_token | Redeem a 6-character token against balance | | get_balance | Get account balance(s) | | get_transactions | Get transaction history | | generate_referral | Generate a referral token |

Prerequisites

Claude Desktop setup

Edit ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "vaiu": {
      "command": "npx",
      "args": ["-y", "@vaiu/mcp-server"],
      "env": {
        "VAIU_USERNAME":   "[email protected]",
        "VAIU_PASSWORD":   "your-password",
        "VAIU_CLIENT_KEY": "your-client-key"
      }
    }
  }
}

Fully restart Claude Desktop. The Vaiu tools will appear in the tool picker.

Cursor setup

Add to .cursor/mcp.json in your project (or ~/.cursor/mcp.json globally):

{
  "mcpServers": {
    "vaiu": {
      "command": "npx",
      "args": ["-y", "@vaiu/mcp-server"],
      "env": {
        "VAIU_USERNAME":   "[email protected]",
        "VAIU_PASSWORD":   "your-password",
        "VAIU_CLIENT_KEY": "your-client-key"
      }
    }
  }
}

Environment variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | VAIU_USERNAME | Yes | – | Your Vaiu account email | | VAIU_PASSWORD | Yes | – | Your Vaiu account password | | VAIU_CLIENT_KEY | Yes | – | API client key from developer console | | VAIU_API_BASE | No | https://api.vaiu.io | Vaiu server URL (see below) |

Connecting to a different Vaiu server

By default the bridge connects to the hosted Vaiu platform at https://api.vaiu.io. Set VAIU_API_BASE to point at any Vaiu server — a local dev instance, a staging environment, or a privately deployed Vaiu server (e.g. a bank running their own instance).

Local development:

"env": {
  "VAIU_USERNAME":   "[email protected]",
  "VAIU_PASSWORD":   "your-password",
  "VAIU_CLIENT_KEY": "your-client-key",
  "VAIU_API_BASE":   "http://localhost:3000"
}

Private/self-hosted deployment:

"env": {
  "VAIU_USERNAME":   "[email protected]",
  "VAIU_PASSWORD":   "your-password",
  "VAIU_CLIENT_KEY": "your-client-key",
  "VAIU_API_BASE":   "https://api.yourbank.com"
}

Local development

# Install deps
npm install

# Run manually
[email protected] VAIU_PASSWORD=secret VAIU_CLIENT_KEY=abc123 node index.js

Publishing to npm

cd private/mcp-bridge
npm publish --access public

Vaiu Platform · api.vaiu.io · developer.vaiu.io