File tree Expand file tree Collapse file tree 3 files changed +32
-21
lines changed
Expand file tree Collapse file tree 3 files changed +32
-21
lines changed Original file line number Diff line number Diff line change @@ -105,21 +105,13 @@ Creates a test subscription for a customer.
105105
106106### Installation
107107
108- 1 . Clone this repository:
109- ``` bash
110- git clone < repository-url>
111- cd stripe-testing-tools
112- ```
108+ No installation is required! You can use this MCP server directly with npx:
113109
114- 2 . Install dependencies:
115110``` bash
116- npm install
111+ npx stripe-test-mcp
117112```
118113
119- 3 . Build the server:
120- ``` bash
121- npm run build
122- ```
114+ This will automatically download and run the latest version of the server.
123115
124116### Configuration
125117
@@ -143,9 +135,9 @@ Add the server to your Claude Desktop configuration:
143135``` json
144136{
145137 "mcpServers" : {
146- "stripe-testing-tools " : {
147- "command" : " node " ,
148- "args" : [" /path/to/ stripe-testing-tools/build/index.js " ],
138+ "stripe-test-mcp " : {
139+ "command" : " npx " ,
140+ "args" : [" stripe-test-mcp " ],
149141 "env" : {
150142 "STRIPE_API_KEY" : " sk_test_your_test_key_here"
151143 }
@@ -192,8 +184,27 @@ Add the server to your Claude Desktop configuration:
192184
193185## Development
194186
195- For development with auto-rebuild:
187+ ### Local Development
188+
189+ If you want to contribute or modify the server locally:
190+
191+ 1 . Clone the repository:
192+ ``` bash
193+ git clone < repository-url>
194+ cd stripe-testing-tools
195+ ```
196+
197+ 2 . Install dependencies:
198+ ``` bash
199+ npm install
200+ ```
201+
202+ 3 . Build the server:
203+ ``` bash
204+ npm run build
205+ ```
196206
207+ 4 . For development with auto-rebuild:
197208``` bash
198209npm run watch
199210```
Original file line number Diff line number Diff line change 11{
2- "name" : " stripe-testing-tools " ,
2+ "name" : " stripe-test-mcp " ,
33 "version" : " 0.1.0" ,
4- "description" : " Simply testing helpers for your stripe integrations" ,
5- "private" : true ,
4+ "description" : " Simply MCP server for testing for your stripe integrations" ,
5+ "private" : false ,
66 "type" : " module" ,
77 "bin" : {
88 "Stripe Testing tools" : " ./build/index.js"
You can’t perform that action at this time.
0 commit comments