@carrierllc/mcp 0.10.1 → 0.10.2
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/dist/{chunk-DP4ICKYF.js → chunk-PYXTCG4L.js} +2 -2
- package/dist/{chunk-DP4ICKYF.js.map → chunk-PYXTCG4L.js.map} +1 -1
- package/dist/cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/plugin/.claude-plugin/marketplace.json +2 -2
- package/plugin/carrier/.claude-plugin/plugin.json +1 -1
- package/plugin/carrier/README.md +7 -3
- package/plugin/carrier/{commands/billing.md → skills/billing/SKILL.md} +2 -1
- package/plugin/carrier/{commands/churn.md → skills/churn/SKILL.md} +2 -1
- package/plugin/carrier/{commands/credits.md → skills/credits/SKILL.md} +2 -1
- package/plugin/carrier/{commands/esim-status.md → skills/esim-status/SKILL.md} +2 -1
- package/plugin/carrier/{commands/fleet.md → skills/fleet/SKILL.md} +2 -1
- package/plugin/carrier/{commands/greenzone.md → skills/greenzone/SKILL.md} +2 -1
- package/plugin/carrier/{commands/onboard.md → skills/onboard/SKILL.md} +2 -1
- package/plugin/carrier/{commands/packages.md → skills/packages/SKILL.md} +2 -1
- package/plugin/carrier/{commands/provision.md → skills/provision/SKILL.md} +2 -1
- package/plugin/carrier/{commands/sms.md → skills/sms/SKILL.md} +2 -1
- package/plugin/carrier/{commands/status.md → skills/status/SKILL.md} +2 -1
- package/plugin/carrier/{commands/storefront.md → skills/storefront/SKILL.md} +2 -1
- package/plugin/carrier/{commands/subscribers.md → skills/subscribers/SKILL.md} +2 -1
- package/plugin/carrier/{commands/usage.md → skills/usage/SKILL.md} +2 -1
- package/plugin/carrier/{commands/wallet.md → skills/wallet/SKILL.md} +2 -1
package/dist/cli.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carrierllc/mcp",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.2",
|
|
4
4
|
"description": "Carrier MCP \u2014 natural-language control of MVNO/eSIM fleets via eSIMVault OCS. Stdio mode for direct integration with Claude Desktop, Cursor, Windsurf, and MCP-compatible clients. Ships the `carrier` CLI (plugin install + white-label eSIM storefront scaffold).",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Carrier (Lifecycle Innovations Limited)",
|
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
},
|
|
7
7
|
"metadata": {
|
|
8
8
|
"description": "Carrier — natural-language MVNO/eSIM fleet control + white-label storefront for Claude Code.",
|
|
9
|
-
"version": "0.1.
|
|
9
|
+
"version": "0.1.3"
|
|
10
10
|
},
|
|
11
11
|
"plugins": [
|
|
12
12
|
{
|
|
13
13
|
"name": "carrier",
|
|
14
14
|
"source": "./carrier",
|
|
15
15
|
"description": "Provision eSIMs, manage subscribers/packages/billing/usage/SMS/churn/fleet, and roll out a white-labeled storefront — all in natural language via the Carrier MCP.",
|
|
16
|
-
"version": "0.1.
|
|
16
|
+
"version": "0.1.3",
|
|
17
17
|
"author": {
|
|
18
18
|
"name": "Lifecycle Innovations Limited",
|
|
19
19
|
"url": "https://carrier.llc"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "carrier",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Natural-language control of your MVNO/eSIM fleet — the Stripe of telecom. Provision eSIMs, manage subscribers, packages, billing, usage, SMS, churn, and fleet health, and roll out a white-labeled storefront. Wraps the Carrier MCP (113 tools over OAuth 2.1).",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Lifecycle Innovations Limited",
|
package/plugin/carrier/README.md
CHANGED
|
@@ -42,7 +42,11 @@ claude mcp add --transport http carrier https://mcp.carrier.llc/mcp
|
|
|
42
42
|
claude mcp auth carrier
|
|
43
43
|
```
|
|
44
44
|
|
|
45
|
-
##
|
|
45
|
+
## Slash commands
|
|
46
|
+
|
|
47
|
+
Each ships as a skill (`skills/<name>/SKILL.md`), so it also fires on plain
|
|
48
|
+
natural language — `/carrier:fleet` and "how's the fleet doing?" reach the same
|
|
49
|
+
instructions.
|
|
46
50
|
|
|
47
51
|
| Command | Does |
|
|
48
52
|
|---|---|
|
|
@@ -68,8 +72,8 @@ claude mcp auth carrier
|
|
|
68
72
|
- **carrier-billing-auditor** — read-only revenue/cost audit, proposes adjustments
|
|
69
73
|
- **carrier-storefront-builder** — scaffold, white-label, deploy the storefront
|
|
70
74
|
|
|
71
|
-
##
|
|
75
|
+
## Reference skill
|
|
72
76
|
|
|
73
|
-
- **carrier-operations** — the full MCP tool map + safety rules
|
|
77
|
+
- **carrier-operations** — the full MCP tool map + safety rules (no slash command; loaded when planning multi-step work)
|
|
74
78
|
|
|
75
79
|
All operations run through the Carrier MCP (`https://mcp.carrier.llc/mcp`, OAuth 2.1 + PKCE). Money- and service-affecting actions always confirm first.
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: billing
|
|
3
|
+
description: Manages fleet billing: recent billing events, balance adjustments, low-balance thresholds, cost outliers, and Stripe Connect payouts and disputes. Use when the operator asks about billing, invoices, charges, balance adjustments, payout status, chargebacks, or which subscribers cost the most.
|
|
3
4
|
argument-hint: "[events|balance|topup|payouts|configure] [subscriber/account]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: churn
|
|
3
|
+
description: Ranks churn risk across the fleet and surfaces the best retention action per account, plus marketing and upsell segments. Use when the operator asks who is likely to churn, which accounts are at risk, why a subscriber went quiet, or where the growth is.
|
|
3
4
|
argument-hint: "[subscriber|fleet]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: credits
|
|
3
|
+
description: Reports Carrier platform credit runway and burn rate, generates top-up links, and checks OCS and provider credential health. Use when the operator asks about platform credit, remaining credits, funding the platform, or whether credentials are valid or stale.
|
|
3
4
|
argument-hint: "[balance|topup|status]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: esim-status
|
|
3
|
+
description: Inspects eSIM and SIM lifecycle state per account — installed, active, suspended — plus activation QR/LPA availability, provider health, and HLR bitrate. Use when the operator asks whether an eSIM is activated, why a SIM will not connect, or wants the activation QR code.
|
|
3
4
|
argument-hint: "[account/ICCID]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: fleet
|
|
3
|
+
description: Builds a one-screen fleet health dashboard: SIM states, recent OCS events, rate-limit headroom, environment and credential state, and credit runway. Use when the operator asks how the fleet is doing, wants an overview or dashboard, or asks whether anything is broken.
|
|
3
4
|
argument-hint: ""
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: greenzone
|
|
3
|
+
description: Manages green-zone fair-use whitelisting, network steering lists, destination prefixes, and per-subscriber traffic restrictions. Use when the operator asks about the whitelist, fair-use caps, resetting a green-zone counter, or steering a subscriber onto different networks.
|
|
3
4
|
argument-hint: "[list|add|remove|reset] [subscriber/destination]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: onboard
|
|
3
|
+
description: Drives a new operator from nothing to a live, sellable eSIM brand across six gates: access, offer, pilot provisioning, storefront, billing, and go-live. Use when someone wants to launch a connectivity business, start an MVNO, or stand up a new eSIM brand end to end.
|
|
3
4
|
argument-hint: "[brand name]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: packages
|
|
3
|
+
description: Creates, assigns, modifies, and right-sizes data packages and package templates across the fleet. Use when the operator asks to add a plan, change a data allowance, extend an expiry, set up recurring monthly packages, or fit a subscriber's plan to actual usage.
|
|
3
4
|
argument-hint: "[list|create|assign|modify|remove] [subscriber] [template]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: provision
|
|
3
|
+
description: Issues eSIMs from free inventory and assigns a starter package, returning the ICCID and activation QR/LPA in a copyable block. Use when the operator asks to provision, issue, create, or order eSIMs or SIMs for an account.
|
|
3
4
|
argument-hint: "[account/reseller] [country or package] [qty]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: sms
|
|
3
|
+
description: Sends a single SMS to one subscriber over the Carrier network, after confirming the resolved recipient and the exact message. Use when the operator asks to text, SMS, or message a subscriber.
|
|
3
4
|
argument-hint: "[subscriber/MSISDN] [message]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: status
|
|
3
|
+
description: Runs a fast control-plane ping — environment, credential health, rate-limit headroom, and credit balance — as one line per check. Use when the operator asks whether Carrier is up, if auth is working, or wants a quick status check.
|
|
3
4
|
argument-hint: ""
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: storefront
|
|
3
|
+
description: Scaffolds, white-labels, generates a logo for, and deploys the customer-facing eSIM storefront, then verifies it actually serves and repairs it once if not. Use when the operator asks to create, rebrand, or deploy their storefront, shop, or customer-facing site.
|
|
3
4
|
argument-hint: "[create|logo|deploy|targets|clerk|rebrand] [dir]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: subscribers
|
|
3
|
+
description: Lists, inspects, diagnoses, and changes the lifecycle state of subscribers — suspend, resume, terminate — plus contact, plan, and location detail. Use when the operator asks to look up a subscriber by ICCID or MSISDN, or to suspend, resume, or cancel a SIM.
|
|
3
4
|
argument-hint: "[list|view|suspend|resume|terminate] [subscriber/MSISDN/ICCID]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: usage
|
|
3
|
+
description: Reports data consumption, burn rate, projected depletion date, roaming country history, and usage anomalies. Use when the operator asks how much data a subscriber has used, when they will run out, or whether any consumption looks abnormal.
|
|
3
4
|
argument-hint: "[subscriber/MSISDN] [period]"
|
|
4
5
|
---
|
|
5
6
|
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
2
|
+
name: wallet
|
|
3
|
+
description: Operates the Atlas managed prepaid wallet — EUR balance, bulk top-up packs, hosted checkout, and auto-top-up. Use when the operator asks about their prepaid wallet balance, buying a top-up pack, or enabling automatic top-ups. Distinct from platform credit and Stripe Connect.
|
|
3
4
|
argument-hint: "[balance|topup|packs|auto]"
|
|
4
5
|
---
|
|
5
6
|
|