Skip to content
Back to search
100
MCP live MCP 2025-11-25 streamable-http

eSIM Tabby

com.esimtabby/esimtabby

Buy and manage travel eSIM data plans in the conversation. Pay by card (Stripe) or USDC over x402.

Uptime
100.0%
1 direct probes · 30d
Response
377ms
last probe
Tools
11
callable
Resources
0
readable
Prompts
0
available

Tools · 11

search_esim_plans

Find travel eSIM data plans available for a destination.

get_plan_details

Full details of one eSIM plan, including current price.

create_checkout

Start a purchase — the step after the user picks a plan from search_esim_plans. Call it with that plan's plan_id (get_plan_details shows the current price first). Returns an order_id and where to pay…

pay_order

Pay for an order in USDC over x402, without opening a browser. Only for an MCP client that signs x402 payments itself: call it once for the payment requirements, then repeat the call carrying the sig…

get_order_status

Check an order. Call this after the user says they've paid. Not read-only: an order still in progress is advanced first — payment is confirmed and the provider order placed or collected — so the stat…

get_esim_activation

Get the QR code and activation details for a purchased eSIM. Not read-only: like get_order_status, an order that is not ready yet is advanced first, so this can change the order's state.

list_topup_options

Data top-ups that can be added to an eSIM the user already has. A top-up extends the existing eSIM — same QR code, nothing to re-install. Not every plan is reloadable; this returns an empty list when…

create_topup_checkout

Buy more data for an eSIM the user already has — the step after list_topup_options. Call it with the order_id of the fulfilled eSIM and a plan_id chosen from list_topup_options. The top-up lands on t…

get_esim_usage

How much data an active eSIM has used, and how much is left.

cancel_order

Cancel an order and refund it. Only possible while the eSIM is uninstalled. Once the profile has been installed on a device the provider refuses to take it back, and this returns an error instead — s…

list_my_orders

List this account's eSIM orders, newest first.

How to use

Add to your Claude Desktop / Cursor / Cline MCP config:

{
  "mcpServers": {
    "esim_tabby": {
      "url": "https://esimtabby.com/mcp",
      "transport": "streamable-http"
    }
  }
}