Skip to main content
Glama

roamzy_list_esims

Read-onlyIdempotent

List the authenticated user's eSIMs with status, balance, and msisdn. IMPORTANT: when referring to an eSIM in user-visible text, use msisdn (the eSIM phone number, e.g. '2040XXXXXX') — that is the only user-facing identifier. The id field is an internal ULID for follow-up API calls; do NOT surface it to the user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
esimsYes
api_versionNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "api_version": {
      +      "type": "string"
      +    },
      +    "esims": {
      +      "items": {
      +        "properties": {
      +          "balance_usdt": {
      +            "type": "number"
      +          },
      +          "created_at": {
      +            "type": "string"
      +          },
      +          "display_id": {
      +            "type": "string"
      +          },
      +          "id": {
      +            "description": "Internal ULID for follow-up calls. Never user-facing.",
      +            "type": "string"
      +          },
      +          "msisdn": {
      +            "description": "The eSIM number — the ONLY identifier to show a user.",
      +            "type": "string"
      +          },
      +          "status": {
      +            "type": "string"
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "required": [
      +    "esims"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.3/5.0
Behavior4/5

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

The annotations already declare readOnlyHint, idempotentHint, and no destructive effects. The description adds valuable behavioral context beyond annotations: the instruction to use `msisdn` in user-facing text and to not surface the internal `id` field. This is useful, non-obvious output-handling guidance.

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 and front-loaded: the first sentence summarizes the action, and the second sentence adds a focused, important clarification. Every sentence carries meaningful information without fluff.

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's simplicity (no params) and the existence of an output schema, the description is complete for the agent's decision-making. It covers the key user-facing distinction (msisdn vs id) that goes beyond what the schema alone would convey.

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 baseline is 4. The description correctly avoids inventing parameter details and instead explains the output fields, which is appropriate for a parameterless endpoint.

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 starts with a specific verb ('List') and resource ('the authenticated user's eSIMs'), and names the returned fields (status, balance, msisdn). It clearly distinguishes itself from siblings by focusing on listing multiple eSIMs for the current user, as opposed to get_esim 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 Guidelines3/5

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

The description states what the tool does but does not explicitly compare it to alternatives like roamzy_get_esim. The context is clear enough to infer the primary use case, but it lacks explicit when-to-use/when-not-to-use guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.