reloadpi-mcp 1.1.1 → 1.1.3
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.
- package/README.md +1 -1
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -98,7 +98,7 @@ You need USDC on Base mainnet. Get it at [Coinbase](https://coinbase.com) or bri
|
|
|
98
98
|
|
|
99
99
|
- **Browse / polling tools** — free, no payment
|
|
100
100
|
- **Purchase tools** — x402 micropayment in USDC deducted automatically per call
|
|
101
|
-
- Refunds: eSIM orders
|
|
101
|
+
- Refunds: eSIM orders and carrier-rejected topups auto-refund on `FULFILLMENT_FAILED`/`EXPIRED` (auto_on_fail, ~24h window); voucher codes and delivered airtime are non-refundable
|
|
102
102
|
|
|
103
103
|
---
|
|
104
104
|
|
package/index.js
CHANGED
|
@@ -272,7 +272,7 @@ function createMcpServer() {
|
|
|
272
272
|
|
|
273
273
|
server.tool(
|
|
274
274
|
"claim_refund",
|
|
275
|
-
"Claim a refund for a failed or expired eSIM order. Only eligible when status is FULFILLMENT_FAILED or EXPIRED and refund_policy is auto_on_fail. Requires the txHash from the original purchase response as proof of payment.
|
|
275
|
+
"Claim a refund for a failed or expired eSIM order, or a carrier-rejected topup. Only eligible when status is FULFILLMENT_FAILED or EXPIRED and refund_policy is auto_on_fail. Requires the txHash from the original purchase response as proof of payment. Voucher orders and successfully delivered topups are non-refundable. Free — no payment required.",
|
|
276
276
|
{
|
|
277
277
|
orderId: z.string().describe("Order UUID from the purchase response"),
|
|
278
278
|
txHash: z.string().describe("On-chain txHash from the purchase response — proves you are the original payer"),
|