Skip to content

Commit 34cb46e

Browse files
committed
Add MCP server
Signed-off-by: Mohammod Al Amin Ashik <maa.ashik00@gmail.com> Claude-Session: https://claude.ai/code/session_01S58U7phvDgphx6ZTXuWMJQ
1 parent 14015a9 commit 34cb46e

1 file changed

Lines changed: 95 additions & 0 deletions

File tree

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.razorpay-mcp-docker",
4+
"name": "Razorpay (Docker)",
5+
"alias": "razorpay",
6+
"description": "Razorpay's official MCP server, run via Docker. Manage payments, orders, payment links, refunds, QR codes, settlements, and payouts through the Razorpay API in an isolated container.",
7+
"logo": "https://avatars.githubusercontent.com/u/7713209?v=4",
8+
"schema_version": "2.1",
9+
"categories": [
10+
"developer-tools"
11+
],
12+
"tags": [
13+
"razorpay",
14+
"payments",
15+
"finance",
16+
"docker",
17+
"orders",
18+
"refunds",
19+
"payment-links"
20+
],
21+
"transport": {
22+
"type": "stdio",
23+
"command": "docker",
24+
"args": [
25+
"run",
26+
"-i",
27+
"--rm",
28+
"-e",
29+
"RAZORPAY_KEY_ID",
30+
"-e",
31+
"RAZORPAY_KEY_SECRET",
32+
"razorpay/mcp"
33+
],
34+
"env": {
35+
"RAZORPAY_KEY_ID": "${input:RAZORPAY_KEY_ID}",
36+
"RAZORPAY_KEY_SECRET": "${input:RAZORPAY_KEY_SECRET}"
37+
},
38+
"metadata": {
39+
"inputs": [
40+
{
41+
"id": "RAZORPAY_KEY_ID",
42+
"label": "Razorpay Key ID",
43+
"description": "Your Razorpay API key ID (public identifier). Use test-mode keys (rzp_test_...) for development and live-mode keys (rzp_live_...) for production.",
44+
"type": "text",
45+
"required": true,
46+
"secret": false,
47+
"placeholder": "rzp_test_xxxxxxxxxxxx",
48+
"obtain": {
49+
"url": "https://dashboard.razorpay.com/app/website-app-settings/api-keys",
50+
"instructions": "1. Log in to the Razorpay Dashboard\n2. Go to Account & Settings > API Keys\n3. Click Generate Key (or use an existing key)\n4. Copy the Key ID",
51+
"button_label": "Open API Keys"
52+
}
53+
},
54+
{
55+
"id": "RAZORPAY_KEY_SECRET",
56+
"label": "Razorpay Key Secret",
57+
"description": "Your Razorpay API key secret. Shown only once when the key is generated — store it securely. Pairs with the Key ID for API authentication.",
58+
"type": "text",
59+
"required": true,
60+
"secret": true,
61+
"placeholder": "****************************",
62+
"obtain": {
63+
"url": "https://dashboard.razorpay.com/app/website-app-settings/api-keys",
64+
"instructions": "1. Log in to the Razorpay Dashboard\n2. Go to Account & Settings > API Keys\n3. Click Generate Key\n4. Copy the Key Secret immediately (it is shown only once)",
65+
"button_label": "Open API Keys"
66+
}
67+
}
68+
]
69+
}
70+
},
71+
"auth": {
72+
"type": "api_key",
73+
"instructions": "Generate an API key pair (Key ID + Key Secret) from the Razorpay Dashboard under Account & Settings > API Keys."
74+
},
75+
"contributor": {
76+
"name": "Razorpay",
77+
"github": "razorpay",
78+
"url": "https://razorpay.com"
79+
},
80+
"links": {
81+
"repository": "https://github.com/razorpay/razorpay-mcp-server",
82+
"homepage": "https://razorpay.com",
83+
"documentation": "https://github.com/razorpay/razorpay-mcp-server#readme"
84+
},
85+
"platforms": [
86+
"all"
87+
],
88+
"capabilities": {
89+
"tools": true,
90+
"resources": false,
91+
"prompts": false,
92+
"read_only_mode": false
93+
},
94+
"changelog_url": "https://github.com/razorpay/razorpay-mcp-server/releases"
95+
}

0 commit comments

Comments
 (0)