Skip to content

Commit 91e0f28

Browse files
committed
rename package name
1 parent 1954c6a commit 91e0f28

File tree

3 files changed

+32
-21
lines changed

3 files changed

+32
-21
lines changed

README.md

Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff 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
198209
npm run watch
199210
```

package-lock.json

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
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"

0 commit comments

Comments
 (0)