Skip to main content
Glama

Server Details

Search & buy travel data eSIMs for 70+ destinations — pay by Stripe link, get the eSIM QR. USD.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Available Tools

5 tools
create_checkoutAInspect

Create a secure Stripe payment link for an Alt eSIM plan. Returns a payment URL the BUYER opens to pay (the agent never handles card details) AND a checkout_session_id. After the buyer pays, call get_qr_code with that checkout_session_id to fetch the eSIM QR and show it to the buyer. The QR is also emailed. Charged in USD. You MUST collect the buyer's real email.

ParametersJSON Schema
NameRequiredDescriptionDefault
langNoDelivery email language (default 'en').
emailYesBuyer's email — the eSIM QR code is also sent here.
sku_or_idYesThe plan sku or id to buy.
customer_codeNoOptional Alt customer code (format Alt-XXXXXXXX, shown on the buyer's altesim.com account page). If provided, the order is linked to that account and appears in its order history regardless of the delivery email used.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It does well: states the agent never handles card details (security), the buyer opens the payment URL, the QR is emailed, and charges are in USD. It does not disclose potential side effects like charge failures or rate limits, but covers the key behaviors an agent needs to know.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Every sentence in the description earns its place. It starts with the core action, explains return values, gives the follow-up step, and notes the mandatory email. No redundant or filler content. The structure is logical and flows well.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is complete for a tool with no output schema: it explains return values, the post-payment flow, the email requirement, and the currency. It doesn't mention error handling or how to obtain the sku, but those are covered by sibling tools and the schema. Given the tool's complexity, this is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents all parameters. The description adds some usage context (e.g., stressing the email must be real, mentioning currency), but it does not introduce new semantic meaning beyond the schema. The baseline of 3 is appropriate since the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Create a secure Stripe payment link for an Alt eSIM plan.' It specifies the resource (eSIM plan), the action (create payment link), and the return values (payment URL and checkout_session_id). It also distinguishes itself from siblings by describing the follow-up with get_qr_code, which is a unique workflow.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear when-to-use context: it's for creating a payment link when a buyer wants to purchase a plan. It gives a sequenced instruction ('After the buyer pays, call get_qr_code') and a mandatory requirement ('You MUST collect the buyer's real email'). It does not explicitly list alternatives or when-not-to-use, but the flow is clear enough for an agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_esim_planAInspect

Get one Alt eSIM plan by its sku or id. Returns full details: title, data amount, validity days, USD price, coverage carriers, product URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
sku_or_idYesThe plan sku (e.g. 'eSIM_Alt_JP_1DG1') or id.

TDQS

A3.8/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must disclose all behavioral traits. It states it returns 'full details' including specific fields, which is helpful. However, it does not mention if the operation is read-only, any authorization requirements, error conditions (e.g., invalid sku), or rate limits. The description is adequate but could be more transparent about side effects or limitations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise—two sentences that front-load the purpose and then list returned details. Every sentence earns its place with no redundancy or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a simple single-parameter tool, the description covers the purpose, the parameter usage (implicitly), and the return content. It does not have an output schema, so the description compensates by listing returned fields. However, it could be more complete by noting if the tool is read-only or what happens when the plan is not found, but the low complexity keeps this from being a major gap.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents the single parameter 'sku_or_id' with its type and example. The description does not add further meaning to the parameter beyond what the schema provides, so a baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Get' and the resource 'one Alt eSIM plan by its sku or id', and distinguishes it from sibling tools like 'search_esim_plans' (which lists/filters plans) by specifying a single plan lookup. It also lists the returned fields, adding precision.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies this tool is for fetching a single plan when you already know the sku or id, contrasting with 'search_esim_plans' which searches over plans. However, it does not explicitly state when not to use it (e.g., to list all plans) or provide alternatives beyond the sibling list.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_qr_codeAInspect

Fetch the eSIM QR code(s) for an order, to show the buyer directly. Pass the checkout_session_id from create_checkout. Returns a clear status: 'awaiting_payment' (buyer has NOT paid — tell them to pay), 'processing' (paid, eSIM still provisioning — retry in ~30s), 'ready' (returns the QR image(s) + ICCID(s) to display), 'expired', 'refunded', or 'failed'. Use the status to tell the buyer exactly what's happening — never assume payment succeeded.

ParametersJSON Schema
NameRequiredDescriptionDefault
checkout_session_idYesThe checkout_session_id from create_checkout (Stripe session id).

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, description fully discloses behavior: lists possible statuses ('awaiting_payment', 'processing', 'ready', 'expired', 'refunded', 'failed') and instructs agent to never assume payment succeeded. This is thorough for a simple tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is concise, front-loaded with purpose, and each sentence adds meaningful information. No filler or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has only one parameter and no output schema, the description effectively serves as the output schema by enumerating possible statuses and their implications. Covers all necessary guidance for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, but the description enhances the parameter by linking it to create_checkout, which adds workflow context. Without this, the parameter is self-explanatory, so baseline 3 + 1 for added value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states 'Fetch the eSIM QR code(s) for an order' with a specific verb and resource. It distinguishes from siblings like create_checkout or get_esim_plan by focusing on QR retrieval linked to a checkout session.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says 'to show the buyer directly' and provides a prerequisite: 'Pass the checkout_session_id from create_checkout.' The status descriptions also guide the agent on how to interpret responses.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_destinationsAInspect

List all Alt eSIM destinations (country/region slugs with English names and region). Use a slug as the 'country' argument for search_esim_plans.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full behavioral burden. It effectively discloses that the tool has no parameters (empty input_schema), is a read-only informational listing, and produces slugs for a specific purpose. It does not describe the output format or any potential caching behavior, but the simplicity of the tool (0 params) makes this less critical.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, no wasted verbiage. The first sentence states the core function, the second provides critical usage guidance. Every word earns its place. Perfectly front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 0 parameters, no annotations, no output schema, and a simple listing function, the description is nearly complete. The only minor gap is not mentioning whether the list includes all possible destinations or if there are any prerequisites/caching. However, for a straightforward list tool, this is adequate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0 parameters and 100% coverage, so the baseline is 4. The description adds value by explaining how the output (slugs) relates to sibling tool input, which is beyond what the empty schema provides. No need for param documentation since none exist.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists Alt eSIM destinations including country/region slugs, English names, and region. It distinguishes itself from siblings by explicitly mentioning the output includes slugs that are used as input for search_esim_plans. The verb 'list' is specific and the resource 'Alt eSIM destinations' is well-defined.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly tells the agent when to use this tool (to find slugs for search_esim_plans), providing a direct connection to a sibling tool. It lacks explicit 'when not to use' guidance, but the context of usage is clear and actionable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_esim_plansAInspect

Search Alt eSIM travel data plans. Filter by destination country slug (e.g. 'japan', 'usa', 'europe'), region, and/or max USD price. Returns plans with sku, data amount, validity days, USD price and coverage carriers. All prices are USD.

ParametersJSON Schema
NameRequiredDescriptionDefault
regionNoOptional region filter.
countryNoDestination country/region slug, e.g. 'japan', 'south-korea', 'thailand', 'usa', 'europe'. Omit to list all.
max_price_usdNoOptional max price in USD.

TDQS

A3.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full transparency burden. It discloses that the tool returns plans with specific fields (sku, data amount, validity days, USD price, coverage carriers) and notes that all prices are in USD. This is adequate for a read-oriented search tool, but it does not discuss rate limits, auth requirements, or potential side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise: three sentences, each serving a distinct purpose (purpose, filters, return fields). Information is front-loaded with the primary action. No unnecessary words or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has 3 optional parameters and no output schema, the description covers the essential aspects: what it searches, filters, and returns. It mentions the return fields and price currency. It could be more complete by noting ordering or pagination behavior, but it is sufficient for a simple search tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds value by providing concrete examples for the country slug ('japan', 'usa', 'europe') and stating 'Omit to list all', which clarifies behavior beyond the schema. The region enum is also hinted at, though the schema already defines it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'Search Alt eSIM travel data plans' with a specific verb and resource. It lists filter options and return fields, making the purpose clear. However, it does not explicitly differentiate from sibling tools like 'list_destinations' or 'get_esim_plan', which would strengthen clarity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides context on what to filter by (country slug, region, max price) and gives examples ('japan', 'europe'). It implies usage for finding plans but does not give explicit guidance on when to use this tool versus alternatives, nor does it mention when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • -
    license
    Not graded
    quality
    B
    maintenance
    Lets AI agents search and buy travel eSIMs from ALT eSIM for 200+ destinations, with Stripe payment links and email delivery of QR codes.
  • A
    license
    Not graded
    quality
    B
    maintenance
    Search and buy travel eSIMs for 200+ countries, with specialized China plans that deliver uncensored internet without a VPN. Exposes five read-only tools to search plans, check device eSIM compatibility, get plan details, get help, and generate a secure on-site checkout link.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.2/5.0
Disambiguation5/5

Each tool has a clear, distinct role: listing destinations, searching plans, getting one plan, creating a checkout, and fetching QR/status. The create_checkout and get_qr_code tools are related but the descriptions clearly separate payment creation from fulfillment status.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: create_checkout, get_esim_plan, get_qr_code, list_destinations, search_esim_plans. This makes the API predictable and easy for an agent to navigate.

Tool Count5/5

Five tools is well-scoped for this server's purpose: discover destinations, search and inspect plans, create a payment checkout, and retrieve delivery/status information. Each tool earns its place with no redundancy.

Completeness5/5

The tool set covers the full eSIM purchase lifecycle: plan discovery, plan detail lookup, payment checkout creation, and QR code delivery with clear status handling. The get_qr_code status states cover waiting, processing, ready, expired, refunded, and failed, so agents can handle all outcome paths.

Resources