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

rzp-mcp

v1.0.0

Published

MCP server for the Razorpay API — payments, orders, refunds, settlements

Readme

rzp-mcp

An MCP (Model Context Protocol) server that exposes the Razorpay API as tools for Claude and other LLM clients. Interact with your Razorpay account using natural language.

"Check if payment pay_xyz went through"
"List my last 10 orders from this month"
"Issue a ₹200 partial refund on payment pay_abc"
"What was settled to my account last week?"

Tools

| Tool | Description | |------|-------------| | razorpay_fetch_payment | Fetch full payment details by ID | | razorpay_payment_status | Quick status check — status, amount, captured, method | | razorpay_capture_payment | Capture an authorized payment | | razorpay_create_order | Create a new order | | razorpay_fetch_order | Fetch an order by ID | | razorpay_list_orders | List orders with date/status filters | | razorpay_issue_refund | Issue a full or partial refund | | razorpay_fetch_refund | Check refund status | | razorpay_fetch_settlement | Fetch a settlement by ID | | razorpay_list_settlements | List settlements with date filters |

Setup

1. Get your Razorpay API keys

Go to Razorpay Dashboard → Settings → API Keys and generate a key pair.

Use test mode keys (rzp_test_...) while getting started.

2. Configure Claude Desktop

Add this to your Claude Desktop config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "razorpay": {
      "command": "npx",
      "args": ["-y", "rzp-mcp"],
      "env": {
        "RAZORPAY_KEY_ID": "rzp_test_xxxxxxxxxxxx",
        "RAZORPAY_KEY_SECRET": "your_secret_here"
      }
    }
  }
}

Restart Claude Desktop. You should see the Razorpay tools available.

Running as HTTP server

For remote/web clients, run in HTTP mode:

RAZORPAY_KEY_ID=rzp_test_xxx RAZORPAY_KEY_SECRET=yyy npx rzp-mcp http

This starts:

  • Streamable HTTP at http://localhost:3000/mcp (MCP spec 2025-11-25)
  • Legacy SSE at http://localhost:3000/sse (backwards-compatible)

Set PORT env var to change the port (default: 3000).

Auth

Credentials are passed exclusively via environment variables — never as tool arguments.

RAZORPAY_KEY_ID=rzp_live_xxxxxxxxxxxx
RAZORPAY_KEY_SECRET=your_secret_here

The server validates credentials at startup and exits with a clear error message if they are missing.

Amount units

Razorpay uses the smallest currency unit for all amounts:

  • INR: paise (₹500.00 = 50000)
  • USD: cents ($10.00 = 1000)

All tool descriptions explicitly document this to prevent mistakes.

Development

git clone https://github.com/hahahamid/razorpay-mcp
cd razorpay-mcp
npm install
npm test        # run unit tests
npm run build   # build to dist/

License

MIT