Skip to main content
Glama

Submit artwork

submit_design

Send one of the designer's own artworks for moderation. TWO inputs, same path: either artwork files — front/back accept a public image URL OR an upload_id from designer_upload_slot — or session_id of a FINISHED Studio session of theirs (generated with studio_generate; no need to download the print, we fetch it server-side). Args: name (required), front OR session_id (one of them), back?, layout? ('front_back' default, or 'r10' for a ready print-side file), note?, batch? (same string across a bulk run so the moderator sees them as one batch). Minimum 2048px on the short side. IMPORTANT for the designer: this queues the artwork for moderation — catalog listing follows production and is not instant.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
backNoOptional second side: URL or upload_id.
nameYesDesign name the moderator will see.
noteNoAnything the moderator should know.
batchNoGroup id for a bulk upload.
frontYesImage URL or upload_id. Omit when passing session_id.
layoutNo'front_back' (default) or 'r10'.
session_idNoFinished Studio session of this designer (print_id from studio_generate). Alternative to front.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okNo
noteNo
errorNo
pitchNoDesigner-program pitch to relay to the user — present when is_partner is false.
statusNo
upload_idNo
is_partnerNo
how_to_joinNoHow to join the designer program — present when is_partner is false.

TDQS

A4.8/5.0
Behavior5/5

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

Even though annotations all default to false, the description discloses key behavioral traits: the action queues artwork for moderation, catalog listing is not immediate, and the system fetches print files server-side. This goes beyond what annotations provide and gives the agent a realistic model of effects and timing.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is direct and information-dense, starting with action and then covering inputs, constraints, and behavior in a compact paragraph. It uses punctuation effectively (colons, semicolons, parentheses) to pack several ideas without becoming bloated. Minor loss for the run-on feel in the middle section, but no wasted sentences.

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?

Given the tool has 7 parameters, an output schema, and moderate complexity, the description covers the essential operational context: the two input modes, optional parameters, layout choices, resolution requirement, and the moderation/catalog delay. It does not need to detail return values since an output schema exists. This is a complete, self-contained description for an agent to select and invoke correctly.

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?

With 100% schema coverage, baseline is 3, but the description adds meaningful context: it clarifies the front/session_id mutual exclusion ('front OR session_id (one of them)'), explains layout options ('front_back' default or 'r10'), and introduces the 2048px minimum requirement. However, it creates a mild inconsistency by saying 'front OR session_id' while the schema marks front as required, which could confuse an agent relying on schema. Still, the description provides substantial value beyond the 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 verb+resource: 'Send one of the designer's own artworks for moderation.' It clearly distinguishes this from sibling tools like designer_uploads (which likely handles file uploads) and studio_generate (which creates sessions), by framing the action as submitting for moderation and accepting either artwork files or a finished studio session.

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 explicitly delineates two usage paths: provide artwork files (URL/upload_id) or provide a FINISHED Studio session_id from studio_generate. It also states that fetching the print is done server-side ('no need to download the print'), and includes an important caveat about moderation timing: 'catalog listing follows production and is not instant.' This gives clear when-to-use context and differentiates from alternatives.

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.9/5.0
Disambiguation4/5

Tools are mostly distinct; slight overlap exists between cart_update and set_cart_quantity (both modify cart lines), and between remove_promo and cart_remove (different domains). Other groups (studio, designer) are well-separated.

Naming Consistency5/5

Consistent use of verb_noun pattern for most tools, with noun prefixes (designer_, studio_) grouping related tools. No mixed conventions or obscure abbreviations.

Tool Count3/5

31 tools is high for a single server, covering shopping, studio, and designer domains. Some tools like cart_update and set_cart_quantity seem redundant, pushing count beyond optimal.

Completeness4/5

Core workflows (search, cart, checkout, generation, designer submission) are covered. Minor gaps: no edit/delete for designs or orders, and no tool to manage saved addresses beyond viewing.

Resources