Skip to main content
Glama

Apply Backdrop

apply_backdrop

Remove or replace an image background through Uwear's canonical free backdrop generation path. Provide exactly one foreground source: generation_result_id, clothing_item_asset_id, or a public HTTPS image_url. Use backdrop_mode transparent, solid with color_hex, or image with background_image_url. Returns generation_id; poll get_generation_status, then fetch get_generation_results.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
color_hexNoRequired for solid mode, for example #FFFFFF.
image_urlNoPublic HTTPS foreground image URL; provide exactly one source.
backdrop_modeYestransparent removes the background, solid uses color_hex, and image uses background_image_url.
background_image_urlNoRequired for image mode; public HTTPS replacement background.
generation_result_idNoExisting generation result foreground; provide exactly one source.
clothing_item_asset_idNoExact owned garment asset foreground; provide exactly one source. Find asset IDs with get_garment or list_garments.

TDQS

A4.5/5.0
Behavior4/5

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

Beyond the annotations, the description discloses the asynchronous generation behavior by stating it 'Returns generation_id' and instructs the agent to poll status before fetching results. It also clarifies the exclusivity constraint without contradicting annotations. It does not discuss side effects on source assets or error conditions, but the 'replace' language combined with destructiveHint=false is not contradictory.

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?

Four short sentences deliver the outcome, source requirements, mode-to-parameter mapping, and lifecycle instructions with no filler. The most important constraint ('exactly one foreground source') appears early, and the follow-up flow is front-loaded before any less critical details.

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 tool with no output schema and six parameters, the description covers what is needed to invoke the tool correctly: source selection, mode mapping, required parameters, and the return/status/result workflow. It also notes the public HTTPS requirement for image URLs. An agent has enough context to understand both the call and the subsequent polling behavior.

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 schema already has 100% parameter coverage and describes each field individually. The description adds value by explaining cross-parameter relationships: exactly one foreground source must be chosen, and each backdrop_mode requires a specific supporting parameter. This is meaningful semantic information beyond the flat 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 opens with a specific action, 'Remove or replace an image background,' and identifies the exact resource and path: 'Uwear's canonical free backdrop generation path.' This clearly distinguishes the tool from siblings like generate_avatar or upload_garment_from_public_url, which serve different purposes.

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 operational guidance: 'Provide exactly one foreground source' and maps each backdrop_mode to its required parameter. It also specifies the follow-up flow: 'poll get_generation_status, then fetch get_generation_results.' However, it does not name alternative tools or state when not to use this tool, so it stops short of a full 5.

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

A3.5/5.0
Disambiguation3/5

Most tools target distinct resources and have detailed descriptions, but several closely related families exist: create_credit_checkout_session vs mcp_create_credit_checkout_session, the propose_brief/confirm_brief/update_brief lifecycle, and the many avatar/upload entry points. An agent must read long caveats carefully to avoid selecting the wrong tool.

Naming Consistency4/5

The vast majority of tool names follow a predictable snake_case verb_noun pattern (list_*, get_*, create_*, update_*, propose_*). The mcp_* prefix group and varied creation verbs (create/upload/save/add/generate) are minor deviations, though mcp_create_credit_checkout_session duplicating create_credit_checkout_session adds some confusion.

Tool Count1/5

With 67 tools, this is an extreme mismatch by the rubric's own 50+ threshold, far beyond the typical 3-15 well-scoped range. Many tools are narrow lifecycle steps such as two-phase local uploads, app-only montage internals, and multiple ArtDirection authoring variants, making the agent-facing surface very heavy.

Completeness3/5

The core generation, brief, montage, and QA workflows are covered thoroughly with polling and result retrieval. However, notable lifecycle gaps exist: outfits, locations, avatars, and tags mostly have create/list/get but no update or delete, and delete_template is the only delete tool in the entire set.

Resources