Skip to main content
Glama

Virtual try-on

try_on

Opens an interactive virtual try-on for a product (by productRef from search_products): the shopper uploads their photo and gets a photorealistic image of themselves wearing the actual product — true to the real garment.

Only available for brands that enabled marketplace try-on; when unavailable, the response says so and the product can still be viewed via its store link.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
productRefYesProduct reference token from search_products.

TDQS

A4/5.0
Behavior3/5

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

With no positive safety annotations (all false), the description carries the burden. It adds context about the interactive photo upload and availability limitation, but it doesn't disclose potential side effects (e.g., whether it changes any state) or describe what happens after the interactive session. The lack of explicit side-effect disclosure leaves some ambiguity.

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 two concise sentences. The first clearly states the core functionality, and the second adds the availability caveat and fallback. No filler or unnecessary repetition.

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 covers the essential context: what it does, how to get the input, availability constraints, and a fallback path. It doesn't describe the return value format, but for an interactive tool with no output schema, this may be acceptable. The description is fairly complete for a simple one-parameter tool.

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 100%: productRef is already described as 'Product reference token from search_products.' The description repeats this source information but adds no new parameter meaning beyond what the schema already provides. Baseline 3 applies here.

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 a specific action ('Opens an interactive virtual try-on') with a specific resource ('a product by productRef'). It also distinguishes itself from sibling tools by focusing on try-on functionality and referencing search_products for the product reference.

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 indicates when to use the tool (shopper wants virtual try-on) and provides a clear prerequisite (get productRef from search_products). It also notes an exclusions when the brand hasn't enabled try-on and offers an alternative ('viewed via its store link'), though it doesn't explicitly name a sibling tool as the alternative.

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

Each tool has a clearly distinct purpose: search_products finds products, get_product retrieves details for a specific product, and try_on launches a virtual try-on experience. There is no overlap between them, and descriptions reinforce what each does.

Naming Consistency5/5

All tool names follow a consistent lowercase verb_noun pattern (get_product, search_products, try_on). The pattern is predictable and easy to infer even without descriptions.

Tool Count4/5

Three tools is within the typical well-scoped range (3-15), but the set feels thin because the description of search_products references a browse_products tool that isn't actually included. The count is not excessive, but slightly below what the domain seems to require.

Completeness2/5

The tool set is missing a browse_products tool, which is explicitly referenced in search_products as the alternative for open-ended browsing. Additionally, the 'shopper' domain implies cart or checkout capabilities, but none are present, leaving obvious gaps in the shopping workflow.

Resources