Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Enables interaction with Razorpay payment gateway through natural language, allowing users to fetch payments, manage orders, issue refunds, and list settlements.

README.md

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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Browser & Scraping servers.