π¦
Transloadit Media Processing
Process video, audio, images, and documents with 86+ cloud media processing robots.
0 installs
Trust: 37 β Low
Content
Ask AI about Transloadit Media Processing
Powered by Claude Β· Grounded in docs
I know everything about Transloadit Media Processing. Ask me about installation, configuration, usage, or troubleshooting.
0/500
Loading tools...
Reviews
Documentation
Transloadit JavaScript/TypeScript SDKs
Monorepo for Transloadit SDKs, shared packages, and the MCP server.
Packages
@transloadit/nodeβ Node.js SDK + CLI. Seepackages/node/README.md.transloaditβ Stable unscoped package (built from@transloadit/node).@transloadit/mcp-serverβ MCP server (Streamable HTTP + stdio). Seepackages/mcp-server/README.md.@transloadit/typesβ Shared TypeScript types.@transloadit/utilsβ Shared utilities.@transloadit/zodβ Zod schemas for Transloadit APIs.
Quick start
Node SDK
import { Transloadit } from '@transloadit/node'
const client = new Transloadit({
authKey: process.env.TRANSLOADIT_KEY as string,
authSecret: process.env.TRANSLOADIT_SECRET as string,
})
const result = await client.createAssembly({
params: {
steps: {
':original': { robot: '/upload/handle' },
},
},
files: { file: '/path/to/file.jpg' },
waitForCompletion: true,
})
MCP server
See packages/mcp-server/README.md for MCP setup, auth, and tool docs.
Development
- Install:
corepack yarn - Checks + unit tests:
corepack yarn check - Node SDK unit tests:
corepack yarn workspace @transloadit/node test:unit
Repo notes
- Docs live under
docs/(non-MCP). - The
transloaditpackage is prepared viascripts/prepare-transloadit.ts.
