Watch Carrier MCP run.
This is what a real Claude conversation looks like when it drives the Carrier MCP server. 113 type-safe tools, one auth, every MNO. No SDK glue. No swagger. Just plain English.
The terminal on the right is an illustrative scripted example — not a recorded session. Real responses depend on your eSIMVault fleet.
- Read22
- Write13
- Admin8
- Intelligence8
- Platform62
Six conversations that ship today.
Carrier MCP collapses dozens of OCS REST calls into a handful of high-level intents. Tap a card to see a real prompt.
Activate eSIM
Provision a subscriber and assign a regional package in a single prompt.
Diagnose Subscriber
Get a full health report on any line — registration, usage, balance, errors.
Fleet Health Report
Aggregate health across thousands of subscribers in one pass.
Revenue Analysis
Break down ARPU, churn, and package mix across the reseller tree.
Coverage Analysis
Inspect which networks a package can attach to and where it falls back.
Bulk Operations
Move populations of subscribers between packages, statuses, and accounts.
Probe the live endpoint.
Drop in your own eSIMVault token, run the snippet, and Carrier will hand back the full tool manifest.
curl -X POST https://mcp.carrier.llc/mcp \
-H "Authorization: Bearer <your-esimvault-token>" \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'Pick your client. Paste one block.
Carrier MCP works with any MCP-aware client. Replace the token placeholder and you're in.
{
"mcpServers": {
"carrier": {
"command": "npx",
"args": ["-y", "@carrierllc/mcp", "--token", "<your-token>"]
}
}
}