Skip to main content
Glama

list_products

Read-only

List a brand's live products/denominations with prices in the chosen coin — exact labels to use with get_price/validate_order (for eSIM use list_esim_plans instead). Never creates an order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
coinNoCoin for live pricing (default USDC)
brand_slugYesbrandSlug from list_brands/search_products
country_codeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoProduct page on the AgentRoam site
coinNo
flagNo
kindNogiftcard | esim | topup
brandNo
errorNoproduct_not_found
countryNo
is_esimNo
logoUrlNo
productsNo
brand_slugNo
country_nameNo
destination_nameNo

TDQS

A4/5.0
Behavior3/5

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

Annotations already carry readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description reinforces this with 'Never creates an order' and adds that prices are live and in the chosen coin — useful behavioral context beyond the annotations, but it doesn't describe pagination or return mechanics.

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, zero filler — the primary purpose and scope are front-loaded, followed by the key routing and safety clarifications. Every clause 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?

An output schema exists, so return values need no prose explanation, and annotations cover the safety profile. The description provides purpose, exclusions, and downstream compatibility. Minor gap: no mention of result volume or pagination, but given the output schema, the definition is essentially complete for 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?

Schema coverage is 67% (coin and brand_slug described, country_code left bare). The description adds downstream meaning by tying the coin selection to output labels consumable by get_price/validate_order, complementing the schema. It doesn't compensate for the undocumented country_code, but the schema carries most of the load, so a 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?

States a specific verb (list), resource (a brand's products/denominations), and adds scope (live, priced in chosen coin). Explicitly distinguishes itself from list_esim_plans and positions its output as the exact labels for get_price/validate_order, so an agent can select it correctly.

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?

Names the alternative tool list_esim_plans with the exact condition that triggers it (eSIM use), and clarifies it never creates an order, ruling out create_order. This is solid routing guidance, though it doesn't enumerate conditions for other siblings like get_price — but the core discrimination is covered.

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.

TDQS

A4.2/5.0
Disambiguation4/5

Most tools have clear distinct purposes: listing currencies, payment methods, prices, brands, eSIM plans, products, searching, validating, creating, and checking order status. However, potential confusion between list_esim_plans and list_products for eSIM purchases, and search_products overlapping with list_brands/list_products, creates slight ambiguity. purchase_wizard serves as a fallback but is clearly labeled.

Naming Consistency4/5

Tools follow a consistent verb_noun pattern: get_currencies, get_order_status, get_payment_methods, get_price, list_brands, list_esim_plans, list_products, validate_order, create_order, search_products. 'purchase_wizard' deviates slightly as a noun phrase rather than verb_noun, but it's a distinct standalone tool.

Tool Count5/5

With 11 tools covering the full purchase lifecycle (browse, search, price, validate, create, status) plus payment configuration, the count is well-scoped for a payment/order platform. Each tool serves a necessary function without redundancy.

Completeness5/5

The tool surface is comprehensive: listing brands/products/eSIM plans, searching, getting prices and methods, validating and creating orders, and checking status. The flow from validate_order → create_order → get_order_status is complete, with fallback purchase_wizard covering widget-less scenarios. No major gaps.

Resources