Skip to main content
Glama
wgaostudio

closetscan

by wgaostudio

get_garment

Retrieve the complete catalog record for a specific garment ID, including all attributes, views with provenance, and file paths.

Instructions

Full record for one garment: all attributes, every view with its provenance, and file paths.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
garment_idYese.g. g003

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It does explain what data is included, but it does not explicitly state that this is a read-only operation or describe behavior for a non-existent garment ID.

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 a single well-structured sentence that front-loads the core purpose ('Full record for one garment') and then lists the key inclusions. There is no wasted wording.

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?

For a simple single-ID fetch with no output schema, the description adequately communicates what the caller should expect: attributes, views with provenance, and file paths. It could be more complete by noting the response format or error handling, but the essentials are present.

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%; the only parameter, garment_id, is documented with an example. The description adds no additional parameter guidance, which is acceptable given the high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource (one garment) and the scope of what is returned (all attributes, every view with provenance, and file paths). It distinguishes itself from list/search siblings by emphasizing a single full record, though it lacks an explicit verb like 'returns'.

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

Usage Guidelines3/5

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

The phrase 'for one garment' implies this is the tool to use when a specific garment ID is already known and complete details are needed. However, it does not explicitly state when to prefer this over list_garments or search_garments, nor does it provide exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.