Skip to main content
Glama

25karats — Made-to-Order Wedding & Engagement Rings

search_products

Read-onlyIdempotent

Search the 25karats made-to-order catalog (wedding bands, engagement rings, his & hers sets, fine jewelry) by keywords or a style code. Use this first when a shopper describes what they want ("braided mens wedding band", "vintage engagement ring"). Returns product cards with live starting prices in USD, image URLs, and product URLs. Follow up with get_product for options and price_product for an exact configured price. total_count is exact unless capped is true; capped counts are lower bounds imposed by the search index.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoRequested page; values below 1 are clamped and reported
tagsNoEvery supplied style tag must match, by slug, name, or id
limitNoRequested results per page (default 10); values outside 1..24 are clamped and reported
metalNoOptional metal filter; each returned starting price and URL use this metal's variant
queryYesKeywords or a style code (e.g. 'HC100232')
categoryNoOptional shopper-facing catalog category. engagement_rings / wedding_bands / his_hers_sets / jewelry select a product line; mens_rings and womens_diamond_rings select the site's men's (/wedding-rings/mens) and women's (/wedding-rings/womens) ring collections, which hold plain bands and diamond rings alike
price_maxNo
price_minNo
product_lineNoOptional product-line filter; category is preferred

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageYes
queryYes
cappedYesTrue when total_count reached the search index's reporting ceiling and is not exact
has_moreYesTrue when another page exists within the reported result window
per_pageYes
productsYes
paginationYes
total_countYesExact match count unless capped is true; then this is a lower bound
applied_filtersYesValidated optional filters applied to this search

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already establish readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior. The description adds valuable behavioral context beyond those annotations: it returns live starting prices in USD, includes image and product URLs, explains the total_count/capped distinction, and notes that metal affects returned prices and URLs. No contradictions with 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 compact and front-loaded: purpose first, then usage context, then return contents, then one caveat about capped counts. Every sentence earns its place without repeating schema details or annotations.

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?

For a 9-parameter tool with an output schema present, the description is remarkably complete: it states what is searched, when to use it, what results look like, how to follow up, and the one non-obvious behavioral caveat (capped counts are lower bounds). The output schema handles return shape details, so no additional documentation burden is needed.

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 description coverage is 78%, close to the high-coverage baseline, and the schema already documents key parameters like query, category, metal, and product_line in detail. The tool description adds some semantic context (e.g., metal variants drive the returned price/URL, style code examples), but it doesn't significantly expand parameter understanding beyond the schema's own descriptions.

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 opens with a specific verb ('Search') and defines the exact resource (the 25karats made-to-order catalog) and the scope (wedding bands, engagement rings, sets, fine jewelry). It also clarifies that search is by keywords or style code, and lists the concrete return contents, making it unmistakably distinct from sibling tools like get_product or price_product.

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 gives explicit when-to-use guidance ('Use this first when a shopper describes what they want') and prescribes follow-up tools (get_product for options, price_product for exact pricing). It doesn't explicitly name alternatives to exclude (e.g., search_diamonds for diamonds), but the contextual cues and follow-up pointers provide clear usage direction.

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.6/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: browse_collection is for deterministic category browsing while search_products is for free-text discovery, and get_product, get_product_images, and price_product each cover a separate aspect of product research. The diamond search is also cleanly separated from catalog product search.

Naming Consistency5/5

All eight tools follow a consistent snake_case verb_noun pattern: browse_, get_, list_, price_, and search_. Any variability is purely semantic (e.g., list_collections vs browse_collection) rather than a style mismatch.

Tool Count5/5

Eight tools is well-scoped for a made-to-order jewelry e-commerce assistant: taxonomy, product search/browse, product detail, images, pricing, diamond inventory, and store policy information are all covered without redundant or unnecessary tools.

Completeness5/5

The tool set covers the full shopper journey: discover collections, search products, inspect product details and images, configure and price a product, research diamonds, and find store policies. The deep_link_url from price_product provides an effective handoff to checkout, eliminating any hard dead end.

Resources