Skip to main content
Glama

Create or resume an Assembly

transloadit_create_assembly

Create or resume an Assembly, optionally uploading files and waiting for completion.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
filesNo
fieldsNo
assembly_urlNo
instructionsNo
upload_behaviorNo
wait_timeout_msNo
expected_uploadsNo
upload_chunk_sizeNo
upload_concurrencyNo
wait_for_completionNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errorsNo
statusYes
uploadNo
assemblyNo
warningsNo
next_stepsNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden of behavioral disclosure. It mentions optional file upload and waiting, but omits side effects, whether waiting blocks, error behavior, auth requirements, or idempotency. For a creation/resumption tool, this is insufficient.

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 sentence with a front-loaded action phrase and no wasted words. Each clause adds meaningful scope: create/resume, upload files, wait for completion. It is appropriately succinct.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 10 parameters and nested object schemas, yet the description covers only two behavioral aspects. The output schema helps with return values, but with no annotations and minimal description, an agent lacks essential context to construct and invoke a valid assembly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for all 10 parameters. It only hints at 'uploading files' and 'waiting for completion,' which maps loosely to files and wait-related parameters, but it does not explain assembly_url, instructions, upload_behavior, timeouts, or concurrency options.

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 phrase 'Create or resume an Assembly' gives a specific action and resource, and 'optionally uploading files and waiting for completion' clarifies its scope. This differentiates it from siblings like transloadit_get_assembly_status or transloadit_wait_for_assembly, even though the resume mechanism is not detailed.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention that waiting could be delegated to transloadit_wait_for_assembly or that status checks are better for existing assemblies. Usage is only implied by the verb, not explicitly stated.

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
Disambiguation5/5

Each tool targets a distinct resource and action: creation, status retrieval, waiting, linting, and listing robots/templates. No two tools overlap in purpose.

Naming Consistency5/5

All tools follow the same transloadit_verb_noun pattern with clear verbs like create, get, lint, list, wait. The naming is perfectly consistent.

Tool Count5/5

With 7 tools, the set is well-scoped for a media processing workflow, covering assembly creation, monitoring, validation, and resource exploration without bloat.

Completeness4/5

The core assembly lifecycle (create, status, wait) is fully covered, and linting adds pre-validation. A notable gap is the lack of a cancel operation or broader assembly listing, but these are non-essential for common workflows.