You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+48-26Lines changed: 48 additions & 26 deletions
Original file line number
Diff line number
Diff line change
@@ -60,33 +60,15 @@ Currently, the Razorpay MCP Server provides the following tools:
60
60
61
61
To run the Razorpay MCP server, use one of the following methods:
62
62
63
-
### Using Docker (Recommended)
63
+
### Using Public Docker Image (Recommended)
64
64
65
-
You need to clone the Github repo and build the image for Razorpay MCP Server using `docker`. Do make sure `docker` is installed and running in your system.
65
+
You can use the public Razorpay image directly. No need to build anything yourself - just copy-paste the configurations below and make sure Docker is already installed.
> **Note:** To use a specific version instead of the latest, replace `razorpay/mcp` with `razorpay/mcp:v1.0.0` (or your desired version tag) in the configurations below. Available tags can be found on [Docker Hub](https://hub.docker.com/r/razorpay/mcp/tags).
73
68
74
-
Post this razorpay-mcp-server:latest docker image would be ready in your system.
go build -o razorpay-mcp-server ./cmd/razorpay-mcp-server
85
-
```
86
-
87
-
Binary `razorpay-mcp-server` would be present in your system post this.
88
-
89
-
## Usage with Claude Desktop
71
+
This will use the public razorpay image
90
72
91
73
Add the following to your `claude_desktop_config.json`:
92
74
@@ -103,7 +85,7 @@ Add the following to your `claude_desktop_config.json`:
103
85
"RAZORPAY_KEY_ID",
104
86
"-e",
105
87
"RAZORPAY_KEY_SECRET",
106
-
"razorpay-mcp-server:latest"
88
+
"razorpay/mcp"
107
89
],
108
90
"env": {
109
91
"RAZORPAY_KEY_ID": "your_razorpay_key_id",
@@ -118,7 +100,7 @@ Please replace the `your_razorpay_key_id` and `your_razorpay_key_secret` with yo
118
100
- Learn about how to configure MCP servers in Claude desktop: [Link](https://modelcontextprotocol.io/quickstart/user)
119
101
- How to install Claude Desktop: [Link](https://claude.ai/download)
120
102
121
-
## Usage with VS Code
103
+
####Usage with VS Code
122
104
123
105
Add the following to your VS Code settings (JSON):
124
106
@@ -150,7 +132,7 @@ Add the following to your VS Code settings (JSON):
150
132
"RAZORPAY_KEY_ID",
151
133
"-e",
152
134
"RAZORPAY_KEY_SECRET",
153
-
"razorpay-mcp-server:latest"
135
+
"razorpay/mcp"
154
136
],
155
137
"env": {
156
138
"RAZORPAY_KEY_ID": "${input:razorpay_key_id}",
@@ -164,6 +146,46 @@ Add the following to your VS Code settings (JSON):
164
146
165
147
Learn more about MCP servers in VS Code's [agent mode documentation](https://code.visualstudio.com/docs/copilot/chat/mcp-servers).
166
148
149
+
### Build from Docker (Alternative)
150
+
151
+
You need to clone the Github repo and build the image for Razorpay MCP Server using `docker`. Do make sure `docker` is installed and running in your system.
0 commit comments