Skip to main content
Glama

Server Details

Travel eSIM catalog: search plans, check availability, and get exact quotes with checkout links.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.3/5 across 4 of 4 tools scored. Lowest: 3.6/5.

Server CoherenceA
Disambiguation5/5

All tools have distinct purposes: check_availability checks fulfillment, get_plan fetches details, get_quote prices orders, and search_plans searches the catalog. No overlap.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (check_availability, get_plan, get_quote, search_plans), making them predictable.

Tool Count5/5

With 4 tools, the server is well-scoped for a catalog/quoting service. Each tool adds clear value without being too few or too many.

Completeness4/5

The tool set covers search, detail retrieval, availability, and pricing – core pre-purchase operations. Order creation is missing, but the server may be intended only for quoting.

Available Tools

4 tools
check_availabilityCheck plan availabilityA
Read-onlyIdempotent
Inspect

Check whether a plan can be fulfilled right now for a given quantity, using the same gate the checkout runs. Returns available true/false; reason 'delisted' means the SKU left the catalog, 'unavailable' means it temporarily cannot be fulfilled.

ParametersJSON Schema
NameRequiredDescriptionDefault
quantityNoUnits to buy (default 1, max 10).
package_codeYesThe plan's package_code from search_plans.
Behavior1/5

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

Description contradicts annotations: reads 'right now' implying real-time state, but openWorldHint=false indicates the tool may not reflect current world state. This is a serious inconsistency.

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 with no fluff: first states purpose and context, second explains return values and reason codes. Highly efficient.

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?

Input parameters are fully covered by schema (100%). Description explains return format (available true/false, reason) despite no output schema. Lacks mention of default quantity, but overall complete for a simple check tool.

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 description adds no parameter-specific meaning beyond the schema. Baseline score of 3 applies.

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?

Clear verb 'Check' + specific resource 'plan availability'. Description distinguishes from siblings (get_plan, get_quote, search_plans) by focusing on real-time fulfillment gate. Explains return values and two reason codes.

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?

States when to use: to check if a plan can be fulfilled right now using the same checkout gate. No explicit when-not or alternatives mentioned, but the purpose is sufficiently scoped and distinct from siblings.

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

get_planGet one eSIM planA
Read-onlyIdempotent
Inspect

Fetch full public details for a single purchasable plan by its package_code: coverage, data allowance, validity, retail price in USD cents. Errors with plan_not_found for unknown or unsellable codes.

ParametersJSON Schema
NameRequiredDescriptionDefault
package_codeYesThe plan's package_code from search_plans.
Behavior5/5

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

Annotations already indicate readOnlyHint and idempotentHint. Description confirms fetch operation without side effects and adds error behavior (plan_not_found). No contradiction.

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?

Single sentence with additional error behavior; no wasted words. Front-loaded with action verb and resource.

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?

Complete for a single-parameter tool: describes inputs, outputs (listed), error case, and safety profile via annotations. No output schema needed.

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?

Input schema describes package_code as from search_plans. Description adds value by explaining what details are fetched with the parameter, though schema coverage is already 100%.

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 it fetches full public details for a single purchasable plan by package_code, listing specific fields returned (coverage, data allowance, validity, retail price). This distinguishes it from siblings like search_plans or get_quote.

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?

Implies use after obtaining package_code from search_plans, and mentions error for unknown/unsellable codes. Could explicitly state when to use alternatives, but context from sibling names helps.

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

get_quoteQuote an orderA
Read-onlyIdempotent
Inspect

Price an order (package_code, quantity, optional promo code) exactly as checkout would: returns subtotal, discount, and the final total in USD cents, plus the promo status. Purely informational — no order is created.

ParametersJSON Schema
NameRequiredDescriptionDefault
quantityNoUnits to buy (default 1, max 10).
promo_codeNoOptional promo code to apply.
package_codeYesThe plan's package_code from search_plans.
Behavior4/5

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

While annotations already provide readOnly and idempotent hints, the description adds detail about return values (subtotal, discount, total in cents, promo status) and confirms no side effects. This adds behavioral context beyond 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 wasted words. It front-loads the core purpose and then provides important behavioral details efficiently.

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 no output schema, the description adequately lists return fields. It covers the essential behavioral aspects (pricing logic, no order creation) and the parameters are fully documented in the schema, leaving no gaps for an agent to understand correct invocation.

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?

Although schema coverage is 100% with parameter descriptions, the tool description reiterates the parameters' roles in the pricing operation but does not add significant new meaning 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?

The description uses a specific verb 'price' and resource 'order', and clearly distinguishes from siblings by specifying it returns pricing breakdown exactly as checkout would. It also states it's purely informational, which differentiates it from order creation 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 tells when to use (to price an order exactly as checkout) and what it does not do (no order created). It does not explicitly mention alternatives or when not to use, but the context of siblings implies usage boundaries.

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

search_plansSearch eSIM plansA
Read-onlyIdempotent
Inspect

Search the purchasable travel eSIM plan catalog. Filter by destination country, region, minimum data, minimum duration, and maximum price. Returns public plan details (prices in USD cents) sorted cheapest first, with offset pagination via next_offset.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoPage size, 1-50 (default 20).
offsetNoPagination offset from a previous next_offset.
regionNoRegion name filter, e.g. 'Europe' or 'Asia'.
destinationNoCountry to cover: ISO-2 code (e.g. 'JP') or English name (e.g. 'Japan').
min_data_bytesNoMinimum total data allowance in bytes (unlimited plans always match).
max_price_centsNoMaximum retail price in USD cents.
min_duration_daysNoMinimum validity in days.
Behavior5/5

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

The description explains return format (USD cents, cheapest first, pagination via next_offset). Annotations already indicate read-only and idempotent behavior. No contradictions; full 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?

Two sentences, no wasted words, clearly communicates the tool's purpose and key features. Front-loaded with the main action.

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 complexity (7 params, no output schema), the description covers filter behavior, sorting, and pagination. Missing explicit mention of response fields, but sufficient for a search tool.

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% with each parameter described. The description adds minor context like 'prices in USD cents' and 'unlimited plans always match' but doesn't significantly enhance understanding 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?

The description clearly states it searches the travel eSIM plan catalog with specific filters and sorting. It distinguishes from siblings like check_availability or get_plan by focusing on browsing/searching with multiple criteria.

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 implies this tool is for searching/exploring plans, but it doesn't explicitly state when to use it over siblings or when not to use it. However, the context from sibling names and the description's specificity provides adequate guidance.

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

Discussions

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

Related MCP Servers

  • A
    license
    -
    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
  • -
    license
    -
    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.

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources