# Transloadit Media Processing (remote · api2.transloadit.com)

Process video, audio, images, and documents with 86+ cloud media processing robots.

- Trust score: 55/100 (low)
- Change this week: +5
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `api2.transloadit.com`: 55/100 (this document), [markdown](https://verifymcp.io/servers/transloadit-mcp-server/api2.md), [page](https://verifymcp.io/servers/transloadit-mcp-server/api2)
- npm · `@transloadit/mcp-server`: 70/100, [markdown](https://verifymcp.io/servers/transloadit-mcp-server/transloadit-mcp-server.md), [page](https://verifymcp.io/servers/transloadit-mcp-server/transloadit-mcp-server)

## Channel facts

- Endpoint: `https://api2.transloadit.com/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `0.3.9`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 51/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 7 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS check failed: the endpoint is reachable over plaintext HTTP.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 43/100
  - AI-judged instruction clarity (poor).
  - Tool/resource definitions use about 435 tokens (~62/item across 7 items; 7 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 71/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 0% of tool parameters carry a description.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http transloadit-mcp-server https://api2.transloadit.com/mcp
```

### Codex

```toml
[mcp_servers.transloadit-mcp-server]
url = "https://api2.transloadit.com/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "transloadit-mcp-server": {
      "type": "remote",
      "url": "https://api2.transloadit.com/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add transloadit-mcp-server --url https://api2.transloadit.com/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  transloadit-mcp-server:
    url: "https://api2.transloadit.com/mcp"
```

### Other

```json
{
  "mcpServers": {
    "transloadit-mcp-server": {
      "type": "http",
      "url": "https://api2.transloadit.com/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 55, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 54, +2)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 52, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-28 (score 51, +1)

No change was recorded against any check on this day. Stability & Change Management went from 3 to 7. That category is still filling its 30-day observation window: 1 days of observed history at the previous scan, 2 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 50, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 49)

First indexed and scored.

## MCP tools (7)

### `transloadit_lint_assembly_instructions` (~48 tokens)

Lint Assembly Instructions

Lint Assembly Instructions without creating an Assembly. Returns structured issues.

Input parameters:

- `instructions` (required)
- `return_fixed` (boolean)
- `strict` (boolean)

Output parameters:

- `linting_issues` (array)
- `normalized_instructions`
- `status` (string)

### `transloadit_create_assembly` (~106 tokens)

Create or resume an Assembly

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

Input parameters:

- `assembly_url` (string)
- `expected_uploads` (integer)
- `fields` (object)
- `files` (array)
- `instructions`
- `upload_behavior` (string)
- `upload_chunk_size` (integer)
- `upload_concurrency` (integer)
- `wait_for_completion` (boolean)
- `wait_timeout_ms` (integer)

Output parameters:

- `assembly`
- `errors` (array)
- `next_steps` (array)
- `status` (string)
- `upload` (object)
- `warnings` (array)

### `transloadit_get_assembly_status` (~39 tokens)

Get Assembly status

Fetch the latest Assembly status by URL or ID.

Input parameters:

- `assembly_id` (string)
- `assembly_url` (string)

Output parameters:

- `assembly`
- `errors` (array)
- `status` (string)
- `warnings` (array)

### `transloadit_wait_for_assembly` (~57 tokens)

Wait for Assembly completion

Polls until the Assembly completes or timeout is reached.

Input parameters:

- `assembly_id` (string)
- `assembly_url` (string)
- `poll_interval_ms` (integer)
- `timeout_ms` (integer)

Output parameters:

- `assembly`
- `errors` (array)
- `status` (string)
- `waited_ms` (integer)
- `warnings` (array)

### `transloadit_list_robots` (~50 tokens)

List Transloadit robots

Returns a filtered list of robots with short summaries.

Input parameters:

- `category` (string)
- `cursor` (string)
- `limit` (integer)
- `search` (string)

Output parameters:

- `next_cursor` (string)
- `robots` (array)
- `status` (string)

### `transloadit_get_robot_help` (~44 tokens)

Get robot parameter help

Returns a robot summary and parameter details.

Input parameters:

- `detail_level` (string)
- `robot_name` (string)
- `robot_names` (array)

Output parameters:

- `not_found` (array)
- `robot` (object)
- `robots` (array)
- `status` (string)

### `transloadit_list_templates` (~91 tokens)

List templates

List Assembly Templates (owned and/or builtin). Tip: pass include_builtin: "exclusively-latest" to list builtins only.

Input parameters:

- `include_builtin` (string)
- `include_content` (boolean)
- `keywords` (array)
- `order` (string)
- `page` (integer)
- `page_size` (integer)
- `sort` (string)

Output parameters:

- `errors` (array)
- `page` (integer)
- `page_size` (integer)
- `status` (string)
- `templates` (array)
- `total` (integer)
- `warnings` (array)

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/transloadit-mcp-server/api2#diagnostics

## Score history

- 2026-08-03: 55
- 2026-08-02: 55
- 2026-08-01: 54
- 2026-07-31: 54
- 2026-07-30: 52
- 2026-07-29: 51
- 2026-07-28: 51
- 2026-07-27: 50
- 2026-07-26: 49

## Links

- Remote endpoint: https://api2.transloadit.com/mcp
- Repository: https://github.com/transloadit/node-sdk
- Website: https://transloadit.com/docs/sdks/mcp-server/
- Changelog RSS feed: https://verifymcp.io/servers/transloadit-mcp-server/api2/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/transloadit-mcp-server/api2/changelog.json
- HTML version of this page: https://verifymcp.io/servers/transloadit-mcp-server/api2
