@carrierllc/mcp 0.2.17 → 0.2.18

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 (28) hide show
  1. package/README.md +21 -1
  2. package/dist/cli.js +881 -80
  3. package/dist/cli.js.map +1 -1
  4. package/dist/index.js +177 -22
  5. package/dist/index.js.map +1 -1
  6. package/package.json +7 -6
  7. package/plugin/.claude-plugin/marketplace.json +2 -2
  8. package/plugin/carrier/.claude-plugin/plugin.json +1 -1
  9. package/plugin/carrier/README.md +31 -4
  10. package/plugin/carrier/agents/carrier-billing-auditor.md +1 -1
  11. package/plugin/carrier/commands/billing.md +8 -1
  12. package/plugin/carrier/commands/provision.md +18 -8
  13. package/plugin/carrier/commands/wallet.md +31 -0
  14. package/plugin/carrier/skills/carrier-operations/SKILL.md +12 -5
  15. package/templates/storefront/src/app/activate/[orderId]/ActivateClient.tsx +125 -0
  16. package/templates/storefront/src/app/activate/[orderId]/page.tsx +16 -12
  17. package/templates/storefront/src/app/api/checkout/claim/route.ts +30 -0
  18. package/templates/storefront/src/app/api/checkout/guest/route.ts +91 -0
  19. package/templates/storefront/src/app/api/profile/phone/route.ts +40 -0
  20. package/templates/storefront/src/app/checkout/[templateId]/CheckoutClient.tsx +71 -13
  21. package/templates/storefront/src/app/checkout/success/CheckoutSuccessClient.tsx +415 -0
  22. package/templates/storefront/src/app/checkout/success/page.tsx +59 -0
  23. package/templates/storefront/src/app/sign-up/[[...sign-up]]/StorefrontSignUpClient.tsx +199 -0
  24. package/templates/storefront/src/app/sign-up/[[...sign-up]]/page.tsx +18 -3
  25. package/templates/storefront/src/lib/checkout-order-claim.ts +127 -0
  26. package/templates/storefront/src/lib/complete-email-sign-up.ts +50 -0
  27. package/templates/storefront/src/lib/verify-checkout-session.ts +53 -0
  28. 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