Skip to main content
Glama

Request User Selfie

request_user_selfie
Idempotent

Present an image upload widget so the user can share a selfie or photo for virtual try-on. Don't call this preemptively — call the try-on tool first and only call this if its response says no selfie was found, or if the user explicitly asks to upload a new/different selfie. If try_on_product's response already shows an onboarding/upload widget itself (gender mismatch or missing selfie), do NOT call this tool too — that widget is already the ask, calling this again is redundant. The widget will notify when the upload is complete.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.7/5.0
Behavior4/5

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

Annotations include idempotentHint=true and destructiveHint=false, which already indicate safety. The description adds valuable behavioral context: it warns against calling preemptively and explains that the upload widget will notify when the upload is complete. It doesn't disclose potential side effects such as storing the uploaded photo, but the idempotent hint covers repeat-call safety. No contradiction 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 concise yet comprehensive, containing only four sentences. It front-loads the primary purpose, then immediately follows with explicit usage constraints and exclusions. Every sentence earns its place; there is no fluff or repetition.

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 no-parameter tool with a straightforward upload widget interaction, the description is complete: it explains when to call, when not to call, and what the widget does. It also indicates the notification behavior, which answers the likely 'what happens next' question. The sibling try_on context is included, making the decision path clear.

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 input schema has zero parameters, so the description carries no burden to explain parameters. The description's signal is that this is a no-parameter tool; however, it doesn't explicitly state that the tool requires no arguments, but that is already evident from the schema. The widget behavior is described enough to understand the upload flow.

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 tool's purpose: presenting an image upload widget for the user to share a selfie or photo for virtual try-on. The verb 'Present' is specific, and the resource is an upload widget, which is distinct from the sibling try_on tool. It also explicitly distinguishes when not to use it, reinforcing clarity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

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

The description provides explicit when-to-use guidance: call only after try_on returns a 'no selfie found' response or if the user explicitly asks to upload a new/different selfie. It also names the sibling tool 'try_on_product' and instructs not to call this tool if that tool already shows an onboarding/upload widget, preventing redundant calls. This is exemplary usage 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.

TDQS

A4.1/5.0
Disambiguation3/5

Most tools target a clear resource (search, details, mix-and-match, wishlist, try-on), but search_fashion_products explicitly claims all styling/outfit requests while get_mix_and_match also handles outfit building, and both list 'what goes with my blue jeans' as an example. The selfie upload guidance also conflicts with try_on_product's built-in upload widget. Still, the detailed descriptions narrow most boundaries.

Naming Consistency4/5

All names use snake_case and a verb-first pattern (get_, request_, search_, show_, try_on), making the set predictable. Minor inconsistency: get_mix_and_match and get_user_looks are less noun-like than the rest, and the retrieve-style verbs vary between get, show, and request.

Tool Count5/5

8 tools is within the ideal 3-15 range and maps naturally to a shopping/styling assistant: search, detail, outfit, try-on, wishlist, saved looks, and uploads. No tool feels redundant enough to cut, and adding more would risk bloat.

Completeness4/5

The set covers the main shopper journey: search/browse, product detail, outfit building, virtual try-on, saved looks, and wishlist. The main gaps are wishlist mutation (add/remove) and an explicit way to manage/inspect selfies or context images, but these are workable around the existing tools.

Resources