Skip to main content
Glama

search_products

Read-only

Search the AgentRoam travel-crypto catalog: gift cards (Airbnb, Uber, airlines, 500+ US brands), eSIM data plans (110+ destinations incl. Europe/Global region plans) and mobile top-ups (carriers in 100+ countries). Returns product handles for get_price/validate_order. Never creates an order.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
kindNoProduct type filter
queryYesBrand, carrier or destination to search for
countryNoISO country code filter (e.g. "us", "mx")

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
hintNo
resultsNo

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already provide readOnlyHint (true) and destructiveHint (false), so the safety profile is clear. The description adds the key behavioral trait that it never creates an order, which reinforces the read-only nature. It also mentions returning product handles for use with get_price/validate_order, which adds operational context. Overall, it supplements the annotations well without 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?

The description is compact and front-loaded: it states the tool's function, the catalog scope, the output, and the important constraint (never creates an order) all in three sentences with no redundancy. Every sentence adds essential information for the agent.

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 is complete for a search tool given the rich annotations and output schema. It covers the scope, output, and relation to other tools. However, it doesn't mention potential filters (like kind or country) in the description, though these are in the schema, so an agent might not know that searching by country or product type is possible. But since the schema documents those, the description doesn't need to repeat them. A slight gap is absence of mention about result limits or pagination, but that's not critical.

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 parameters are documented in the schema. The description adds semantic context by mentioning the types of items searched (gift cards, eSIM plans, mobile top-ups) and the output value (product handles), which helps agents understand the purpose of the 'query' parameter beyond the schema's simple description. However, it doesn't add detailed format or syntax 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 the search tool's purpose: searching the AgentRoam travel-crypto catalog with specific categories (gift cards, eSIM plans, mobile top-ups) and lists the output (product handles) and relationship to other tools (get_price/validate_order). It distinguishes itself as a search operation and clarifies it never creates an order.

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?

It explicitly mentions the alternatives get_price/validate_order and states what this tool returns (product handles) for those tools, providing clear context for when to use it. It also implicitly indicates it is for searching before purchasing, but does not explicitly state when not to use sibling tools like list_products or list_brands which might have overlapping functions.

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