# online.editclips/mcp (remote · editclips.online)

Video, audio, and image processing for AI agents: convert, transcribe, upscale - 150+ operations.

- Trust score: 75/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-14

## Components

- remote · `editclips.online`: 75/100 (this document), [markdown](https://verifymcp.io/servers/online-editclips-mcp/editclips.md), [page](https://verifymcp.io/servers/online-editclips-mcp/editclips)

## Channel facts

- Endpoint: `https://editclips.online/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## 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-14.

- **Endpoint Security**: 83/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, but the challenge carries no valid RFC 9728 metadata, so a client cannot discover where to get a token.
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - 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**: 79/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 272 tokens (~54/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 7/100
  - Stability observed for 2 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% 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 online-editclips-mcp https://editclips.online/mcp
```

### Codex

```toml
[mcp_servers.online-editclips-mcp]
url = "https://editclips.online/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "online-editclips-mcp": {
      "type": "remote",
      "url": "https://editclips.online/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add online-editclips-mcp --url https://editclips.online/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  online-editclips-mcp:
    url: "https://editclips.online/mcp"
```

### Other

```json
{
  "mcpServers": {
    "online-editclips-mcp": {
      "type": "http",
      "url": "https://editclips.online/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-14 (score 75, +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-08-13 (score 74, 0)

- [functional improvement] Stability: unverified → 0.03

### 2026-08-12 (score 74)

First indexed and scored.

## MCP tools (5)

### `list_tools` (~19 tokens)

List Tools

List all available video/audio processing tools with their options

Output parameters:

- `tools` (array)

### `create_job` (~161 tokens)

Create Processing Job

Create a video/audio processing job. Use list_tools first to find the right tool and options. Returns a job ID — use get_job to check status and get the result URL.

Input parameters:

- `durationMs` (number): Input duration in milliseconds (for credit estimation)
- `height` (number): Input height in pixels (for credit estimation)
- `inputs` (array, required): Public URLs to input files
- `options` (object): Tool-specific options (see list_tools for available options)
- `tool` (string, required): Tool slug from list_tools (e.g. 'compress-video', 'convert-video')
- `webhook` (string): HTTPS URL to receive a POST when the job completes or fails
- `width` (number): Input width in pixels (for credit estimation)

Output parameters:

- `creditsReserved` (number): Credits reserved for this job
- `id` (string): Job ID — pass to get_job
- `message` (string)
- `status` (string): Initial job status (queued)
- `tool` (string): Tool slug

### `get_job` (~47 tokens)

Get Job Status

Check the status of a processing job. When status is 'completed', the response includes a download URL valid for 1 hour.

Input parameters:

- `id` (string, required): Job ID returned by create_job

Output parameters:

- `completedAt`: ISO 8601 timestamp
- `createdAt`: ISO 8601 timestamp
- `creditsCharged`
- `creditsReserved`
- `errorMessage`
- `id` (string)
- `metrics` (object)
- `outputFilename`
- `outputSize`: Output size in bytes
- `outputUrl` (string): Presigned download URL, valid 1 hour (completed jobs only)
- `progress`: 0-100
- `progressMessage`
- `status` (string): queued | processing | completed | failed | cancelled
- `tool`

### `cancel_job` (~31 tokens)

Cancel Job

Cancel a queued or processing job. Reserved credits are refunded.

Input parameters:

- `id` (string, required): Job ID to cancel

Output parameters:

- `id` (string)
- `status` (string): cancelled

### `get_balance` (~14 tokens)

Get Credit Balance

Check your current credit balance

Output parameters:

- `credits` (number): Current credit balance
- `totalPurchased`: Lifetime credits purchased

## Diagnostics

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

## Score history

- 2026-08-14: 75
- 2026-08-13: 74
- 2026-08-12: 74

## Links

- Remote endpoint: https://editclips.online/mcp
- Website: https://editclips.online/docs/guides/mcp
- Changelog RSS feed: https://verifymcp.io/servers/online-editclips-mcp/editclips.xml
- Changelog JSON feed: https://verifymcp.io/servers/online-editclips-mcp/editclips.json
- HTML version of this page: https://verifymcp.io/servers/online-editclips-mcp/editclips
