reloadpi-mcp 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +18 -4
  2. package/bin/cli.js +1 -1
  3. package/package.json +4 -4
package/README.md CHANGED
@@ -38,13 +38,27 @@ Just add the hosted URL — no setup needed:
38
38
  }
39
39
  ```
40
40
 
41
- ### With purchases (recommended)
41
+ ### With purchases via npx (recommended)
42
42
 
43
- Run a local instance with your own wallet. **Claude or Cursor can set this up for you** — just paste this prompt:
43
+ No cloning needed. Add to your MCP config and set your wallet key:
44
44
 
45
- > "Clone https://github.com/cross555/reloadpi-mcp, create a .env with my EVM_PRIVATE_KEY, run npm install && npm start, then add it to my MCP config pointing to http://localhost:3100/mcp"
45
+ ```json
46
+ {
47
+ "mcpServers": {
48
+ "reloadpi": {
49
+ "command": "npx",
50
+ "args": ["-y", "reloadpi-mcp"],
51
+ "env": {
52
+ "EVM_PRIVATE_KEY": "0x..."
53
+ }
54
+ }
55
+ }
56
+ }
57
+ ```
58
+
59
+ npx downloads and starts the server automatically. Requires Node.js 18+.
46
60
 
47
- Or manually:
61
+ ### With purchases via git clone
48
62
 
49
63
  ```bash
50
64
  git clone https://github.com/cross555/reloadpi-mcp
package/bin/cli.js CHANGED
@@ -1,2 +1,2 @@
1
- #!/usr/bin/env node
1
+ #!/usr/bin/env node
2
2
  import "../index.js";
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "reloadpi-mcp",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Reloadpi MCP server — browse and purchase eSIMs, vouchers, and topups via x402 (USDC on Base)",
5
5
  "type": "module",
6
6
  "main": "index.js",
7
7
  "bin": {
8
- "reloadpi-mcp": "./bin/cli.js"
8
+ "reloadpi-mcp": "bin/cli.js"
9
9
  },
10
10
  "files": [
11
11
  "bin/",
@@ -36,7 +36,7 @@
36
36
  "license": "MIT",
37
37
  "repository": {
38
38
  "type": "git",
39
- "url": "https://github.com/cross555/reloadpi-mcp"
39
+ "url": "git+https://github.com/cross555/reloadpi-mcp.git"
40
40
  },
41
41
  "homepage": "https://reloadpi.com",
42
42
  "dependencies": {
@@ -56,4 +56,4 @@
56
56
  "overrides": {
57
57
  "axios": "1.16.1"
58
58
  }
59
- }
59
+ }