Skip to main content
Glama

Finaliser un upload de photo

confirm_upload

Étape 2 : une fois les octets envoyés (PUT) sur l'upload_url, appelle-moi avec le upload_id pour valider la photo (modération incluse). Renvoie un photo_id à passer à animate_photo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
upload_idYesLe upload_id renvoyé par create_upload.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
photo_idYesIdentifiant de la photo, à passer à animate_photo.

TDQS

A4/5.0
Behavior3/5

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

Annotations indicate readOnlyHint=false (mutation) and destructiveHint=false. The description adds that validation includes moderation, which is additional behavioral context. However, it does not clarify failure modes, idempotency, or side effects beyond validation, leaving some transparency gaps.

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?

Two sentences, front-loaded with 'Étape 2', and no redundant phrasing. The description conveys the action, condition, and output without waste.

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?

Given the single parameter, annotations, and presence of an output schema, the description covers the essential workflow: prerequisite, action, and return value. It does not detail moderation failure outcomes, but that is likely handled by the output schema, so the description is adequately complete for its simplicity.

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 coverage is 100% (upload_id described as from create_upload). The description reinforces this and adds the prerequisite of sending bytes first, but does not go beyond the schema's description. Baseline of 3 is appropriate.

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 validates a photo after bytes are sent, using upload_id, and returns a photo_id. It also differentiates from siblings by specifying its place as step 2 in a pipeline (create_upload → confirm_upload → animate_photo).

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 provides explicit usage context: it says to call after sending bytes via PUT and with the upload_id from create_upload, and to pass the returned photo_id to animate_photo. It implies when to use it via the 'Étape 2' step, but does not name alternative tools or explicit exclusions.

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 role: upload creation, upload confirmation, animation triggering, status polling, and example browsing. The two upload-related tools are sequential and their boundaries are explicit.

Naming Consistency5/5

All tool names follow a consistent verb_noun snake_case pattern: create_upload, confirm_upload, animate_photo, get_animation_status, list_examples. This makes the set predictable and easy for an agent to navigate.

Tool Count5/5

Five tools is well-scoped for a focused photo-animation service. Each tool supports a necessary part of the workflow without unnecessary sprawl or overlap.

Completeness5/5

The tool set covers the full animation lifecycle: upload setup, finalization, animation submission, result polling, and example discovery. No essential operation is missing for the stated purpose; cancellation is not a core workflow here.

Resources