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

payme-mcp

v0.1.0

Published

MCP server for Payme payment system (Uzbekistan) — cards, receipts, checkout

Readme

Payme MCP Server

MCP server for Payme — the leading payment system in Uzbekistan. Enables AI agents (Claude, GPT, Cursor, etc.) to process payments, manage cards, and generate checkout links through the Model Context Protocol.

Why?

Stripe, PayPal, and Square all have MCP servers. Payme didn't — until now. If you're building AI agents for Uzbekistan's market, this is the missing piece.

Tools

| Tool | Description | |------|-------------| | cards_create | Tokenize a payment card (Uzcard, Humo) | | cards_verify | Verify card with SMS code | | cards_check | Check if a card token is valid | | cards_remove | Remove a saved card | | receipts_create | Create a payment receipt (invoice) | | receipts_pay | Pay a receipt with a card token | | receipts_send | Send receipt notification via SMS | | receipts_cancel | Cancel/refund a receipt | | receipts_check | Check receipt status | | checkout_url | Generate a Payme checkout payment link |

Quick Start

npx payme-mcp

That's it. One command — downloads, installs, and runs automatically.

Get your credentials from merchant.paycom.uz, then add to your AI tool:

Claude Desktop

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "payme": {
      "command": "npx",
      "args": ["-y", "payme-mcp"],
      "env": {
        "PAYME_ID": "your_merchant_id",
        "PAYME_KEY": "your_merchant_key",
        "PAYME_TEST": "true"
      }
    }
  }
}

Claude Code

Add to .mcp.json in your project root:

{
  "mcpServers": {
    "payme": {
      "command": "npx",
      "args": ["-y", "payme-mcp"],
      "env": {
        "PAYME_ID": "your_merchant_id",
        "PAYME_KEY": "your_merchant_key",
        "PAYME_TEST": "true"
      }
    }
  }
}

Cursor / VS Code / Windsurf

Add to MCP settings:

{
  "payme": {
    "command": "npx",
    "args": ["-y", "payme-mcp"],
    "env": {
      "PAYME_ID": "your_merchant_id",
      "PAYME_KEY": "your_merchant_key"
    }
  }
}

Usage Examples

Once connected, your AI agent can:

Create a payment link:

"Generate a Payme checkout link for order #1234, amount 99,000 UZS"

Process a card payment:

"Tokenize card 8600XXXXXXXXXXXX, verify it, then charge 50,000 UZS"

Check payment status:

"Check the status of receipt 63abc..."

Cancel a payment:

"Cancel receipt 63abc... and notify the customer"

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | PAYME_ID | Yes | Your Payme merchant ID | | PAYME_KEY | Yes | Your Payme merchant key | | PAYME_TEST | No | Set to true for sandbox mode |

Amount Format

Payme uses tiyin (1 UZS = 100 tiyin):

| UZS | Tiyin | |-----|-------| | 1,000 | 100,000 | | 9,900 | 990,000 | | 99,000 | 9,900,000 | | 990,000 | 99,000,000 |

Receipt States

| State | Meaning | |-------|---------| | 0 | Created (waiting for payment) | | 4 | Paid | | 21 | Held (funds reserved) | | 50 | Cancelled |

Development

git clone https://github.com/sirliboyev-uz/payme-mcp.git
cd payme-mcp
npm install
npm run build

Security

  • Card numbers are tokenized by Payme — tokens are safe to store
  • Never log or store raw card numbers
  • Use PAYME_TEST=true for development/testing
  • All API calls use HTTPS

License

MIT — see LICENSE

Links


Built by SirliAI