# Transloadit — MCP server on mcp.ai > Connect your Transloadit account and use 6 tools for file management and storage straight from your AI agent. Connect with your own API key. Transloadit is a cloud platform for uploading, transforming, and delivering files, images, audio, and video through programmable processing workflows. By: mcp.ai · official Page: https://mcp.ai/transloadit ## Connect (MCP protocol) Remote MCP endpoint (HTTP, streamable): https://api.mcp.ai/p_transloadit?ms=1787291220000 Add it as a custom/remote MCP connector, then authenticate when prompted. ## REST API (no MCP client required) Every tool is also a REST endpoint, authed with a workspace API key. Discover: GET https://api.mcp.ai/api/transloadit/_endpoints # public; lists every endpoint Call: POST https://api.mcp.ai/api/transloadit/ Authorization: Bearer sk_live_… # create one at https://mcp.ai/settings/api-keys Content-Type: application/json Body: { …args } → { "ok": true, "tool": "", "result": { … } } ## Developer docs How to use (MCP or REST), markdown: https://mcp.ai/transloadit/skill.md Postman collection (v2.1): https://mcp.ai/transloadit/postman.json ## Tools - transloadit_cancel_assembly(assembly_id: string) — Cancel a running Assembly and any upload still in progress. Fails if the Assembly reaches another terminal state before cancellation is confirmed. - transloadit_create_assembly(files?: object[], steps?: object, fields?: object, notify_url?: string, template_id?: string, allow_steps_override?: boolean) — Start a Transloadit file-processing Assembly from validated inline Steps or an existing Template, optionally uploading up to 10 local files with a 20 MiB aggregate direct-upload limit. Use a /http/imp - transloadit_get_assembly_status(assembly_id: string) — Retrieve the latest state, uploads, warnings, and results for one Assembly. This performs one status fetch and does not poll. Transloadit limits status requests to 3 per second for the same Assembly I - transloadit_list_assemblies(type?: string, to_date?: string, keywords?: string[], from_date?: string, page_size?: integer, next_cursor?: string) — Return one page of Assemblies in descending creation order, optionally filtered by state, date range, or keywords. - transloadit_replay_assembly(assembly_id: string, reparse_template?: boolean) — Retry a crashed Assembly while its original input files remain recoverable, optionally reparsing its Template. - transloadit_replay_assembly_notification(assembly_id: string) — Resend a completed Assembly's result notification to the notify_url configured on that Assembly. ## Example prompts - "What can I do in Transloadit?" - "Show me a summary of my Transloadit account" ## Links Docs: https://mcp.ai/docs/mcps/transloadit Website: https://mcp.ai/mcps/transloadit