@carrierllc/mcp 0.2.17 → 0.2.19
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 +21 -1
- package/dist/cli.js +893 -80
- package/dist/cli.js.map +1 -1
- package/dist/index.js +213 -36
- package/dist/index.js.map +1 -1
- package/package.json +10 -9
- package/plugin/.claude-plugin/marketplace.json +2 -2
- package/plugin/carrier/.claude-plugin/plugin.json +1 -1
- package/plugin/carrier/README.md +31 -4
- package/plugin/carrier/agents/carrier-billing-auditor.md +1 -1
- package/plugin/carrier/commands/billing.md +8 -1
- package/plugin/carrier/commands/provision.md +18 -8
- package/plugin/carrier/commands/wallet.md +31 -0
- package/plugin/carrier/skills/carrier-operations/SKILL.md +12 -5
- package/templates/storefront/package-lock.json +12722 -0
- package/templates/storefront/package.json +3 -3
- package/templates/storefront/src/app/activate/[orderId]/ActivateClient.tsx +125 -0
- package/templates/storefront/src/app/activate/[orderId]/page.tsx +16 -12
- package/templates/storefront/src/app/api/checkout/claim/route.ts +30 -0
- package/templates/storefront/src/app/api/checkout/guest/route.ts +91 -0
- package/templates/storefront/src/app/api/profile/phone/route.ts +40 -0
- package/templates/storefront/src/app/checkout/[templateId]/CheckoutClient.tsx +71 -13
- package/templates/storefront/src/app/checkout/success/CheckoutSuccessClient.tsx +415 -0
- package/templates/storefront/src/app/checkout/success/page.tsx +59 -0
- package/templates/storefront/src/app/sign-up/[[...sign-up]]/StorefrontSignUpClient.tsx +199 -0
- package/templates/storefront/src/app/sign-up/[[...sign-up]]/page.tsx +18 -3
- package/templates/storefront/src/lib/checkout-order-claim.ts +141 -0
- package/templates/storefront/src/lib/complete-email-sign-up.ts +50 -0
- package/templates/storefront/src/lib/verify-checkout-session.ts +70 -0
- package/templates/storefront/src/middleware.ts +6 -0
package/README.md
CHANGED
|
@@ -9,11 +9,31 @@ Natural language control of your MVNO/eSIM fleet. 43 OCS tools + 8 intelligence
|
|
|
9
9
|
|
|
10
10
|
## Quick start
|
|
11
11
|
|
|
12
|
+
### Interactive CLI (non-developers)
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
npx -y @carrierllc/mcp
|
|
16
|
+
# opens the Carrier TUI: status, sign-up/sign-in, install MCP, fleet NL examples
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
carrier status # plugin + MCP + next steps
|
|
21
|
+
carrier plugin install # zero-cred MCP URL; OAuth on first use in Claude
|
|
22
|
+
carrier open signup # create account
|
|
23
|
+
carrier examples # paste-ready “talk to fleet” prompts
|
|
24
|
+
carrier ask "fleet health" # optional; needs CARRIER_API_KEY=ak_…
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
**Entry A:** register `https://mcp.carrier.llc/mcp` with no token. The first tool
|
|
28
|
+
call in Claude/Cursor opens Clerk OAuth (Google / GitHub / email).
|
|
29
|
+
|
|
30
|
+
### Stdio server (token env)
|
|
31
|
+
|
|
12
32
|
```bash
|
|
13
33
|
ESIMVAULT_API_TOKEN=your_key npx -y @carrierllc/mcp
|
|
14
34
|
```
|
|
15
35
|
|
|
16
|
-
Get a key at [mcp.carrier.llc](https://mcp.carrier.llc).
|
|
36
|
+
Get a key at [mcp.carrier.llc](https://mcp.carrier.llc) or an org API key from the console.
|
|
17
37
|
|
|
18
38
|
---
|
|
19
39
|
|