Transloadit MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| TRANSLOADIT_KEY | Yes | Your Transloadit auth key | |
| TRANSLOADIT_SECRET | Yes | Your Transloadit auth secret |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| transloadit_lint_assembly_instructionsB | Lint Assembly Instructions without creating an Assembly. Returns structured issues. |
| transloadit_create_assemblyB | Create or resume an Assembly, optionally uploading files and waiting for completion. |
| transloadit_get_assembly_statusC | Fetch the latest Assembly status by URL or ID. |
| transloadit_wait_for_assemblyB | Polls until the Assembly completes or timeout is reached. |
| transloadit_list_robotsB | Returns a filtered list of robots with short summaries. |
| transloadit_get_robot_helpC | Returns a robot summary and parameter details. |
| transloadit_list_templatesA | List Assembly Templates (owned and/or builtin). Tip: pass include_builtin: "exclusively-latest" to list builtins only. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 7 tools
Each tool serves a distinct purpose: help/lint/creation/status/wait/list operations are clearly separated. Even similar operations like get_status and wait_for_assembly are distinct (one is immediate, one is a polling loop).
All tools follow the same transloadit_verb_noun pattern. The verbs (get, lint, create, list, wait) are consistent and clear, and the nouns (robot_help, assembly_instructions, assembly, template) are precise.
With 7 tools, the server is well-scoped for a domain focused on assembly creation and monitoring. There are no redundant or filler tools, and the count is appropriate for the functionality offered.
The set covers assembly creation, status checking, waiting, linting, and listing templates/robots. However, it lacks tools for common operations like cancelling an assembly, listing assemblies, or updating/deleting templates, which are typical lifecycle operations in such a domain.