Skip to main content
Glama

AskMia.app travel eSIM AI agent

Server Details

AI-powered eSIM recommendation agent for travelers. Provides real-time coverage checks, package search by country, and pricing across 190+ destinations via structured tool calls.

Tools available:

  • list_countries - full list of supported destinations

  • check_coverage - network operators by country code

  • search_packages - filter eSIM plans by country

  • get_package_details - pricing and data specs

  • create_checkout - generate payment link for purchase

No auth required for search tools. Ideal

Ownership verified
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.2/5.0

Scored across 7 tools

Disambiguation5/5

Each tool targets a distinct aspect of the eSIM purchasing workflow: coverage, device compatibility, country listing, package search, package details, checkout creation, and order status. There is no overlap between tools.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern using snake_case (check_, create_, get_, list_, search_). The verbs are specific to the action and nouns describe the resource, creating a predictable pattern.

Tool Count5/5

Seven tools is well within the ideal range for a domain-specific server. Each tool covers a step in the journey from discovery to delivery, with no redundant utilities.

Completeness5/5

The tool set covers the entire eSIM purchase lifecycle: discovery (list_countries, search_packages, get_package_details), compatibility verification (check_device_compatibility), coverage assessment (check_coverage), payment (create_checkout), and order tracking (check_order_status). No obvious gaps exist for the intended use case.

Available Tools

7 tools
check_coverageA
Read-onlyIdempotent
Inspect

Check network coverage and operators for a country. Pass package_id and customer_country to get a ready-to-use checkout follow-up step.

ParametersJSON Schema
NameRequiredDescriptionDefault
package_idNoOptional: the package the customer is considering, so the response can suggest checkout directly.
country_codeYesISO country code
customer_countryNoOptional: customer's billing ISO country code.

TDQS

A3.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false, so no contradiction. The description adds that the output is a 'ready-to-use checkout follow-up step,' but it does not elaborate on response shape, data freshness, or any external data caveats beyond the annotation hints.

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 short sentences, front-loaded with the core function, then a targeted usage hint. Every clause earns its place and there is no redundant phrasing.

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?

For a read-only, idempotent tool with 3 well-described parameters, the description provides enough context for an agent to invoke it correctly. The main gap is the absence of an output schema and no explanation of the 'checkout follow-up step' format, but annotations compensate for safety-related context.

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 all three parameters. The description adds a small amount of purpose-semantics by linking package_id and customer_country to the checkout outcome, but it does not add detail beyond the schema.

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 states a clear verb ('Check') and resource ('network coverage and operators') scoped to a country, which distinguishes it from siblings like check_order_status and check_device_compatibility. The mention of a checkout follow-up further clarifies its role in the purchase flow.

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 when to use the tool—when coverage/operators for a country are needed and optionally to prepare a checkout—but it does not explicitly contrast it with alternatives or state exclusions. Sibling names like get_package_details and search_packages suggest overlap, yet no routing guidance is given.

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

check_device_compatibilityA
Read-onlyIdempotent
Inspect

Check if a device supports eSIM. Search by device name, model, or vendor (e.g. 'iPhone 15', 'Samsung Galaxy S24', 'Pixel 8'). Optional - useful to verify before purchase.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesDevice name, model, or vendor to search (e.g. 'iPhone 15', 'Samsung', 'Pixel')

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint and idempotentHint, covering the safety profile. The description adds search behavior ('Search by device name, model, or vendor') and example values, but it does not disclose the output format or what a negative match looks like. This is acceptable given annotations carry the main behavioral burden.

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

Conciseness4/5

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

Two sentences, front-loaded with the core action and scope. The examples earn their place by clarifying acceptable input formats. The phrase 'Optional - useful to verify before purchase' is slightly vague ('Optional' what?) but still concise and adds usage context. No wasted bulk.

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?

For a simple single-parameter read-only tool, the description covers what the tool does, what input it accepts, and when to use it. Since there is no output schema, a brief note on what the result indicates would improve completeness, but it is not essential for correct invocation. Overall 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 description coverage is 100% and the query property is already well-described in the schema. The description adds some extra layering through examples and the phrase 'device name, model, or vendor', but this is mostly redundant with the schema. Baseline 3 applies 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?

Description uses a specific verb ('check'), clear resource ('device'), and precise scope ('supports eSIM'). It distinguishes itself from siblings like check_coverage or check_order_status by focusing on device capabilities. The examples further disambiguate its domain.

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 phrase 'useful to verify before purchase' gives a concrete when-to-use context. It doesn't explicitly name alternatives or exclusions, but among the sibling tools none overlaps directly, so the guidance is sufficient for an agent to select it appropriately.

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

check_order_statusA
Read-onlyIdempotent
Inspect

Check the status of a Stripe checkout session created by create_checkout. You MUST call this after sending payment_url to the user; never trust the user's word that they paid. Returns a status (awaiting_payment | paid_processing | delivered | failed). Safe to poll every few seconds while waiting for paid_processing -> delivered. When status is delivered it also returns an esim block (package, activation code / LPA string, qr_code_image_url, iOS/Android install links, activation mode) plus install_instructions - show these to the customer directly in the chat, the email is only a backup. No payment or billing data is ever returned. If failed, give them the escalation block returned by this tool verbatim.

ParametersJSON Schema
NameRequiredDescriptionDefault
session_idYesStripe checkout session id returned by create_checkout (starts with 'cs_').

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already declare readOnly/openWorld/idempotent/non-destructive. The description adds valuable behavioral context: safe polling, status transitions, exact returned payload, and a clear statement that no payment or billing data is ever returned. This goes well beyond the annotation baseline.

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 dense but every sentence contributes: purpose, mandatory sequencing, trust boundary, polling guidance, return payload, customer-facing instructions, and failed-case handling. It is well-organized and front-loaded with the core purpose.

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?

With no output schema, the description carries full responsibility for explaining return values, and it does so thoroughly: status values, the esim block, install_instructions, escalation block, and the absence of payment data. All necessary behavior is covered.

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% and already explains that session_id is the Stripe checkout session id returned by create_checkout, including the 'cs_' prefix. The description reinforces this provenance but does not add meaningfully new parameter-level detail, so baseline 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 states a specific action and resource: check the status of a Stripe checkout session created by `create_checkout`. It clearly distinguishes this tool from siblings by focusing on order status polling and explicitly references the related creation tool.

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?

The description gives explicit when-to-use guidance: MUST be called after sending payment_url, never trust user claims of payment, safe to poll, and what to do with delivered/failed results. This is direct operational guidance that leaves little ambiguity.

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

create_checkoutAInspect

Create a Stripe checkout link for an eSIM package. MANDATORY PRE-STEP: before calling this tool you MUST know the customer's BILLING/RESIDENCE country (not the travel destination). If you don't have it from the conversation, ASK the user explicitly and WAIT for the answer - do NOT guess from destination, IP, or language. Pass it as customer_country (ISO-3166-1 alpha-2). The optional activation_mode field uses internal API values only. NEVER show NOW, FIRST_USE, ON_DEMAND, activation_mode, or similar technical identifiers to the customer. Use these customer-facing names instead: Activate now, Activate on arrival, Manual activation. If the customer has not already said when they want validity to start, ask naturally: 'Would you like to activate it right now, or when you land? There is a manual option available too, but you will need to access AskMia.app settings to activate.' Use Activate now only if the customer is already at the destination, Activate on arrival for automatic activation when the phone connects at the destination, and Manual activation only if the customer explicitly wants control from AskMia.app. IMPORTANT: Worldwide/global plans do not support Activate on arrival; ask whether the customer prefers Activate now or Manual activation. MANDATORY POST-STEP: relay the returned tax_note, activation_note and post_payment_note verbatim before they click pay. AFTER sending payment_url you MUST STOP, then call check_order_status with the returned session_id; do not assume the eSIM is ready based on the user saying 'I paid'. Open access (2/min per IP), or pass a Bearer API key for 60/min.

ParametersJSON Schema
NameRequiredDescriptionDefault
package_idYeseSIM package ID from search_packages
customer_nameNoCustomer name (optional)
customer_emailYesCustomer email for eSIM delivery
activation_modeNoInternal API value. Never repeat these codes to the customer. NOW maps to Activate now; FIRST_USE maps to Activate on arrival and is the default; ON_DEMAND maps to Manual activation.
customer_countryNoREQUIRED IN PRACTICE. Customer's BILLING/RESIDENCE country as ISO-3166-1 alpha-2 (e.g. 'DE', 'US', 'IT') - NOT the travel destination. Drives checkout currency (EUR for EU-27) and lets Stripe compute VAT correctly. If unknown, ASK the user before calling this tool - do not infer.

TDQS

A4.9/5.0
Behavior5/5

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

Even though annotations already mark the operation as non-read-only and not idempotent, the text adds crucial behavior: the tool has side effects (creates a checkout), requires relaying returned notes verbatim, must be followed by order-status verification, and has rate limits. It also warns against assuming fulfillment based on the user's claim of payment.

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

Conciseness4/5

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

The text is long but organized into labeled mandatory sections and front-loads the most critical rule at the top. There is slight repetition of schema-provided enum mapping, but the operational details justify the length.

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?

The description covers prerequisites, exact conversational prompts, parameter semantics, post-call verification, output fields to relay, and rate limits. Since there is no output schema, the mention of payment_url, session_id, and the three notes provides the necessary contract for the caller.

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

Parameters5/5

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

Although schema coverage is 100%, the description meaningfully extends the schema: it clarifies customer_country means billing/residence country, not destination, and instructs the agent to ask rather than guess. For activation_mode, it provides the customer-safe labels and the exact natural-language question, which is far more actionable than the raw enum alone.

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 opening sentence, 'Create a Stripe checkout link for an eSIM package', names a specific verb, object, and resource, which is enough to separate this from the sibling tools. It is not a tautology and clearly identifies the tool's core action.

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?

The description gives a mandatory pre-step (ask for customer_country), detailed rules for choosing activation_mode including the worldwide-plan exception, exact user-facing language, and a mandatory post-step to call check_order_status. It explicitly tells the agent what to ask, when to wait, and not to assume payment means the eSIM is ready.

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

get_package_detailsA
Read-onlyIdempotent
Inspect

Get detailed info about a specific eSIM package, including pricing, VAT/tax note and activation behavior. Pass customer_country to get the correct display currency and VAT flag.

ParametersJSON Schema
NameRequiredDescriptionDefault
package_idYesPackage ID
customer_countryNoCustomer's billing/residence ISO country code (e.g. 'DE'). Drives EUR pricing and VAT flag for EU customers.

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint: false. The description adds meaningful behavioral context beyond those annotations by revealing country-dependent pricing/currency/VAT behavior and the types of details returned. There is no contradiction with the annotations.

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 two sentences with no filler. The core purpose is front-loaded, and the only added usage nuance (customer_country) is introduced in the second sentence. Every part earns its place.

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?

For a simple two-parameter tool with rich annotations and no output schema, the description adequately explains what the tool does and the key parameter behavior. The phrasing 'activation behavior' is slightly vague, but this is a minor gap given the tool's low complexity.

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 coverage is 100%, so the baseline is 3, but the description adds value by explaining that customer_country drives the correct display currency and VAT flag and framing package_id as targeting a specific package. This complements the schema's explanations rather than merely repeating them.

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 names a specific verb and resource: 'Get detailed info about a specific eSIM package.' It also lists the key content areas (pricing, VAT/tax note, activation behavior), which clearly distinguishes it from siblings like search_packages or check_* tools.

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 usage context, especially the instruction to pass customer_country for the correct display currency and VAT flag. It does not explicitly name alternatives or state when not to use the tool, but the intended use case is unambiguous.

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

list_countriesA
Read-onlyIdempotent
Inspect

List all countries where eSIM data plans are available.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is known. The description adds no extra behavioral detail such as pagination, ordering, or response structure, but for a simple list operation with no parameters this is acceptable.

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 a single, clear sentence with no filler, and its subject-object structure is easy to parse quickly.

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 no parameters, a simple read-only purpose, and no output schema, the description is nearly complete. It only lacks explicit mention of the response format, but the stated purpose strongly implies a country list.

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 tool has zero parameters, so the schema requires no documentation. The description sufficiently explains the meaning of the operation despite having no parameters to clarify.

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 uses a specific verb ('List') and a clear resource ('countries where eSIM data plans are available'), which precisely distinguishes this tool from siblings like check_coverage or search_packages. There is no ambiguity about what the tool returns.

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 should be used when the agent needs a list of all countries with eSIM plan availability. It does not explicitly mention when not to use it or provide alternatives, so some inference is required.

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

search_packagesA
Read-onlyIdempotent
Inspect

Search eSIM data packages by country code. Optionally filter by minimum data size (min_data_gb) and validity window (max_validity_days, validity_days). Pass customer_country (ISO code, e.g. 'DE') to get prices in EUR with VAT note for EU customers. Returns up to limit packages (default 10, max 50) ordered by price, plus total_available for pagination via offset. Each package includes network_count (number of supported networks across the destination region).

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax packages to return (default 10, max 50).
offsetNoPagination offset (default 0).
min_data_gbNoMinimum data in GB
country_codeYesDestination ISO country code (e.g. US, FR)
validity_daysNoOnly return plans with exactly this validity in days (e.g. 7, 15, 30). Overrides max_validity_days.
customer_countryNoCustomer's billing/residence ISO country code. Used to pick display currency (EUR for EU-27) and to flag VAT.
max_validity_daysNoOnly return plans whose validity is at most this many days (e.g. 7 for a week-long trip).

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already establish the tool as read-only, idempotent, and non-destructive. The description adds valuable behavior beyond that: results are ordered by price, limited and paginated via limit/offset/total_available, and each package includes network_count. It stops short of stating the ordering direction (ascending vs descending) but still provides substantial transparency.

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?

A four-sentence description with every sentence earning its place: main search action, optional filters, customer_country behavior, and return/pagination contract. It is front-loaded with the most important information and avoids filler or restatement of the schema.

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 covers the required country_code, all optional filters, the customer_country effect, return limits, pagination, total_available, and network_count. Minor gaps remain, such as the exact ordering direction and behavior when customer_country is omitted, but the tool is invocable correctly based on this description alone.

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

Parameters5/5

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

With 100% schema coverage, the baseline is 3, but the description clearly exceeds it by explaining the semantic intent of filters ('validity window'), giving a concrete customer_country example ('DE') with a currency/VAT consequence, and defining network_count as supported networks across the destination region. It adds meaning beyond the raw parameter names.

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?

States a specific action ('Search') on a specific resource ('eSIM data packages') with a clear primary key ('by country code'). The filtering and return-behavior details make it distinct from siblings like get_package_details or list_countries.

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?

Provides clear context for when the tool is appropriate: searching packages by destination country, optionally narrowing by data/validity, and retrieving EU-specific pricing via customer_country. It does not explicitly name alternatives or exclusion criteria, but the use case is directly and concretely described.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 1 tool update
    • Changedcreate_checkout1 field changed
      • changedInput schema / properties / activation_mode / description
        Previous value: -"When the validity countdown starts. NOW = right now (customer already at destination). FIRST_USE = when the device first connects to a network at the destination (default, safest for planned travel). ON_DEMAND = customer manually activates later from AskMia.app My Account. Defaults to FIRST_USE if omitted."New value: +"Internal API value. Never repeat these codes to the customer. NOW maps to Activate now; FIRST_USE maps to Activate on arrival and is the default; ON_DEMAND maps to Manual activation."
  2. 1 tool update
    • Changedcreate_checkout1 field changed
      • changedInput schema / properties / activation_mode / description
        Previous value: -"When the validity countdown starts. NOW = at purchase (customer already at destination). FIRST_USE = on first network connection in destination (default, safest for planned travel). ON_DEMAND = customer manually activates later from AskMia.app My Account (max flexibility, requires Wi-Fi/Internet to trigger). Defaults to FIRST_USE if omitted."New value: +"When the validity countdown starts. NOW = right now (customer already at destination). FIRST_USE = when the device first connects to a network at the destination (default, safest for planned travel). ON_DEMAND = customer manually activates later from AskMia.app My Account. Defaults to FIRST_USE if omitted."
  3. 1 tool update
    • Changedcheck_coverage2 fields changed
      • addedInput schema / properties / customer_country
        Added value: +{
        +  "description": "Optional: customer's billing ISO country code.",
        +  "type": "string"
        +}
      • addedInput schema / properties / package_id
        Added value: +{
        +  "description": "Optional: the package the customer is considering, so the response can suggest checkout directly.",
        +  "type": "string"
        +}
  4. 2 tool updates
    • Addedcheck_order_status
    • Changedcreate_checkout1 field changed
      • changedInput schema / properties / customer_country / description
        Previous value: -"REQUIRED IN PRACTICE. Customer's BILLING/RESIDENCE country as ISO-3166-1 alpha-2 (e.g. 'DE', 'US', 'IT') — NOT the travel destination. Drives checkout currency (EUR for EU-27) and lets Stripe compute VAT correctly. If unknown, ASK the user before calling this tool — do not infer."New value: +"REQUIRED IN PRACTICE. Customer's BILLING/RESIDENCE country as ISO-3166-1 alpha-2 (e.g. 'DE', 'US', 'IT') - NOT the travel destination. Drives checkout currency (EUR for EU-27) and lets Stripe compute VAT correctly. If unknown, ASK the user before calling this tool - do not infer."
  5. 1 tool update
    • Changedcreate_checkout1 field changed
      • addedInput schema / properties / activation_mode
        Added value: +{
        +  "description": "When the validity countdown starts. NOW = at purchase (customer already at destination). FIRST_USE = on first network connection in destination (default, safest for planned travel). ON_DEMAND = customer manually activates later from AskMia.app My Account (max flexibility, requires Wi-Fi/Internet to trigger). Defaults to FIRST_USE if omitted.",
        +  "enum": [
        +    "NOW",
        +    "FIRST_USE",
        +    "ON_DEMAND"
        +  ],
        +  "type": "string"
        +}
  6. 1 tool update
    • Changedsearch_packages4 fields changed
      • addedInput schema / properties / limit
        Added value: +{
        +  "description": "Max packages to return (default 10, max 50).",
        +  "type": "number"
        +}
      • addedInput schema / properties / max_validity_days
        Added value: +{
        +  "description": "Only return plans whose validity is at most this many days (e.g. 7 for a week-long trip).",
        +  "type": "number"
        +}
      • addedInput schema / properties / offset
        Added value: +{
        +  "description": "Pagination offset (default 0).",
        +  "type": "number"
        +}
      • addedInput schema / properties / validity_days
        Added value: +{
        +  "description": "Only return plans with exactly this validity in days (e.g. 7, 15, 30). Overrides max_validity_days.",
        +  "type": "number"
        +}
  7. 1 tool update
    • Changedcreate_checkout3 fields changed
      • changedInput schema / properties / customer_country / description
        Previous value: -"Customer's billing/residence ISO country code (e.g. 'DE'). Used to pick currency (EUR for EU-27) and pre-fill billing country so Stripe computes VAT correctly."New value: +"REQUIRED IN PRACTICE. Customer's BILLING/RESIDENCE country as ISO-3166-1 alpha-2 (e.g. 'DE', 'US', 'IT') — NOT the travel destination. Drives checkout currency (EUR for EU-27) and lets Stripe compute VAT correctly. If unknown, ASK the user before calling this tool — do not infer."
      • changedInput schema / properties / customer_email / description
        Previous value: -"Customer email for delivery"New value: +"Customer email for eSIM delivery"
      • changedInput schema / properties / package_id / description
        Previous value: -"eSIM package ID"New value: +"eSIM package ID from search_packages"
  8. 3 tool updates
    • Changedcreate_checkout1 field changed
      • addedInput schema / properties / customer_country
        Added value: +{
        +  "description": "Customer's billing/residence ISO country code (e.g. 'DE'). Used to pick currency (EUR for EU-27) and pre-fill billing country so Stripe computes VAT correctly.",
        +  "type": "string"
        +}
    • Changedget_package_details1 field changed
      • addedInput schema / properties / customer_country
        Added value: +{
        +  "description": "Customer's billing/residence ISO country code (e.g. 'DE'). Drives EUR pricing and VAT flag for EU customers.",
        +  "type": "string"
        +}
    • Changedsearch_packages2 fields changed
      • changedInput schema / properties / country_code / description
        Previous value: -"ISO country code (e.g. US, FR)"New value: +"Destination ISO country code (e.g. US, FR)"
      • addedInput schema / properties / customer_country
        Added value: +{
        +  "description": "Customer's billing/residence ISO country code. Used to pick display currency (EUR for EU-27) and to flag VAT.",
        +  "type": "string"
        +}
  9. 1 tool update
    • Addedcheck_device_compatibility
  10. 5 tool updates
    • First observedcheck_coverage
    • First observedcreate_checkout
    • First observedget_package_details
    • First observedlist_countries
    • First observedsearch_packages

Frequently Asked Questions

Discussions

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

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables detection and analysis of pre-public product launches through web search, content extraction, AI-powered scoring, and automated alerting. Provides comprehensive tools for surfacing stealth startup signals before they trend publicly.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables AI chat clients to perform market research and competitive intelligence by gathering company overviews, competitor lists, product portfolios, pricing snapshots, and recent news via live Tavily search.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources