Siima eSIM
Server Details
Search travel eSIM plans for 150+ countries and buy via Stripe link; eSIM QR delivered by email.
- 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.
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.
Tool Definition Quality
Average 4.5/5 across 4 of 4 tools scored.
Each tool has a distinct purpose: creating checkout links, fetching plan details, listing destinations, and searching plans. No overlap or ambiguity.
All tools follow a consistent verb_noun snake_case pattern (create_checkout_link, get_esim_plan, list_destinations, search_esim_plans).
Four tools cover the core eSIM purchase workflow (search, details, destinations, checkout) without being too few or excessive.
Tools cover the purchase flow well, but there is no way to retrieve purchased eSIM data via API (though it is emailed). Minor gap.
Available Tools
4 toolscreate_checkout_linkCreate eSIM checkout linkAInspect
Create a secure payment link on siima.io for a Siima eSIM plan (Stripe-powered, but hosted on our own site — never a redirect to checkout.stripe.com). Give the returned url to the user to complete payment. Optionally pass the buyer's email so the link goes straight to the payment page; otherwise the page collects it first. After payment, the eSIM QR code, one-tap activation link, and manual installation codes are emailed to the buyer within a minute. No account or signup is required.
| Name | Required | Description | Default |
|---|---|---|---|
| No | Buyer email to pre-fill at checkout (eSIM is delivered to this address) | ||
| plan_id | Yes | Plan id from search_esim_plans | |
| currency | No | Currency for prices: "usd", "eur", or "gbp". Defaults to "usd". | usd |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It discloses Stripe-powered but hosted on their site, no account needed, email delivery within a minute post-payment. Fully explains what happens beyond the API call.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no filler. First sentence states core function, second explains optional behavior. Front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a tool with 3 params, no output schema, and no annotations, the description covers purpose, return value (URL), payment flow, email delivery, and optional parameters. Agent has sufficient context to invoke correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. Description adds value by explaining optional email behavior (pre-fills payment page vs collects first) and references search_esim_plans for plan_id. Provides context beyond schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it creates a secure payment link on siima.io for an eSIM plan. Distinguishes from sibling tools (get_esim_plan, list_destinations, search_esim_plans) which are query/lookup tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly tells to give the returned URL to the user for payment and optionally pre-fill email. Does not explicitly state when not to use, but the tool's unique purpose makes usage clear without exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_esim_planGet eSIM plan detailsAInspect
Fetch full details of a single Siima eSIM plan by its id (from search_esim_plans). To buy: call create_checkout_link with the plan id, give the returned URL to the user. After payment the eSIM (QR code + activation link + manual codes) is emailed to them automatically — no account needed.
| Name | Required | Description | Default |
|---|---|---|---|
| plan_id | Yes | Plan id returned by search_esim_plans | |
| currency | No | Currency for prices: "usd", "eur", or "gbp". Defaults to "usd". | usd |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It implies read-only behavior ('fetch') and mentions no destructive actions. However, it does not disclose what happens on missing plan_id or rate limits. Still adequate for a simple fetch tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no filler. First sentence states core purpose; second sentence provides crucial workflow. Front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Description covers purpose and usage flow well. However, without an output schema, it does not hint at the structure of returned details (e.g., fields like price, coverage). For a simple fetch tool, nearly complete but missing output shape.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions for both parameters. Description adds context by linking plan_id to search_esim_plans and notes currency default. This extra guidance justifies a score above baseline 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Fetch full details of a single Siima eSIM plan by its id', using a specific verb and resource. Distinguishes from siblings by referencing search_esim_plans for the id and create_checkout_link for purchase.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly tells when to use (after search, to get full details) and gives a complete workflow: call create_checkout_link with plan id, provide URL to user, and explains automatic email delivery after payment. Guides agent on tool selection versus siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_destinationsList covered destinationsAInspect
List all countries Siima has eSIM plans for, with plan counts and the cheapest total price per country. Country codes are ISO 3166-1 alpha-2.
| Name | Required | Description | Default |
|---|---|---|---|
| currency | No | Currency for prices: "usd", "eur", or "gbp". Defaults to "usd". | usd |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behaviors. It details output: countries, plan counts, cheapest price, and country code format. However, it does not mention pagination, ordering, or potential caching. For a simple list, this is mostly adequate.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, no redundant information. The description is front-loaded with the action and resource, providing essential details efficiently.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity (one optional parameter, no output schema), the description fully covers what the tool does and what it returns. It explains the output fields and the country code standard, making it complete for an agent to use.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% for the single parameter (currency) with a clear description in the schema. The tool description does not add additional meaning beyond the schema, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool lists all countries with eSIM plans, including plan counts and cheapest total price, and specifies the country code standard (ISO alpha-2). This distinguishes it from sibling tools like search_esim_plans and get_esim_plan.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for browsing available destinations, but does not provide explicit guidance on when to use this tool versus alternatives like search_esim_plans or create_checkout_link. No exclusions or context are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_esim_plansSearch Siima travel eSIM plansAInspect
Search prepaid travel eSIM data plans by destination country (ISO 3166-1 alpha-2, e.g. "JP"), region (e.g. "Europe"), minimum data in GB, maximum total price, or plan duration in days. Returned price is the final amount the customer pays at checkout (all fees included), in the requested currency. To buy: call create_checkout_link with the plan id, give the returned URL to the user. After payment the eSIM (QR code + activation link + manual codes) is emailed to them automatically — no account needed.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max results to return | |
| region | No | Region name, e.g. "Europe", "Asia" | |
| country | No | Destination country as ISO 3166-1 alpha-2 code, e.g. "JP" for Japan | |
| currency | No | Currency for prices: "usd", "eur", or "gbp". Defaults to "usd". | usd |
| max_price | No | Maximum total price in the requested currency (checkout total) | |
| min_data_gb | No | Minimum data allowance in GB | |
| duration_days | No | Exact plan duration in days |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses that the price is final (all fees included), the currency must be specified, and eSIM is emailed automatically without needing an account. It lacks details on pagination, data freshness, or result structure, but these are acceptable given the tool's scope.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact with three sentences: first lists search criteria, second explains price, third covers purchase flow. It is front-loaded, efficient, and contains no irrelevant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given 7 parameters, no output schema, and no annotations, the description covers the search purpose, price details, and purchase workflow. It implies the output includes plan IDs and a list. Minor improvements could include a brief note on output format or error conditions.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already covers all parameters with descriptions (100% coverage). The description adds value by explaining that max_price corresponds to the final checkout total and providing examples for country codes. This enhances understanding beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'search' and the resource 'prepaid travel eSIM data plans', and lists specific filtering criteria (country, region, data, price, duration). It effectively distinguishes from siblings like create_checkout_link and get_esim_plan by focusing on searching rather than buying or retrieving a single plan.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly explains when to use this tool for finding plans and then directs to create_checkout_link for purchase. It also clarifies the price and post-payment flow. However, it does not mention alternatives like get_esim_plan for direct plan lookups, which could improve guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityCmaintenanceTravel eSIMs for 193 countries. Stripe + Bitcoin checkout. QR by email in 30s. No API key.Last updated486MIT
- -license-qualityBmaintenanceLets AI agents search and buy travel eSIMs from ALT eSIM for 200+ destinations, with Stripe payment links and email delivery of QR codes.Last updated
- Alicense-qualityBmaintenanceSearch 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.Last updatedMIT
- Alicense-qualityBmaintenanceBrowse, compare, and purchase eSIMs for 190+ countries via AI agents. 12 tools for searching 2,300+ data plans, checking coverage, and buying eSIMs with crypto or card. No account required for browsing.Last updatedMIT