# io.usefulapi/apivideo (remote · apivideo.usefulapi.io)

Manage videos and live streams, inspect captions, players and webhooks, and read play analytics.

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

## Components

- remote · `apivideo.usefulapi.io`: 73/100 (this document), [markdown](https://verifymcp.io/servers/io-usefulapi-apivideo/apivideo.md), [page](https://verifymcp.io/servers/io-usefulapi-apivideo/apivideo)

## Channel facts

- Endpoint: `https://apivideo.usefulapi.io/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.1`

## 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**: 78/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation is enforced on tool calls, advertised via RFC 9728 protected-resource metadata. Discovery is public, which costs nothing: no tool can be invoked without a token.
  - HTTPS not yet verified: we couldn't determine whether a plaintext access path exists.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
  - The authorisation server offers only Dynamic Client Registration (RFC 7591), which MCP 2026-07-28 deprecated in favour of Client ID Metadata Documents.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1587 tokens (~105/item across 15 items; 15 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 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.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http io-usefulapi-apivideo https://apivideo.usefulapi.io/mcp
```

### Codex

```toml
[mcp_servers.io-usefulapi-apivideo]
url = "https://apivideo.usefulapi.io/mcp"
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add io-usefulapi-apivideo --url https://apivideo.usefulapi.io/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  io-usefulapi-apivideo:
    url: "https://apivideo.usefulapi.io/mcp"
```

### Other

```json
{
  "mcpServers": {
    "io-usefulapi-apivideo": {
      "type": "http",
      "url": "https://apivideo.usefulapi.io/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 73, +1)

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

### 2026-07-31 (score 72, +3)

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

### 2026-07-30 (score 69, −2)

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

### 2026-07-29 (score 71, +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-28 (score 70, +1)

- [functional improvement] Stability: unverified → 0.03

### 2026-07-27 (score 69, +57)

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

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

First indexed and scored.

## MCP tools (15)

### `apivideo_list_videos` (~184 tokens)

List videos

List videos in the account, with optional filters (title, tags, metadata, description, liveStreamId) and sorting. Read-only. GET /videos.

Input parameters:

- `currentPage` (integer): Page number (1-based). Default 1.
- `description` (string): Filter by description (substring).
- `liveStreamId` (string): Return only videos recorded from this live stream id.
- `metadata` (object): Filter by metadata key/value pairs. Sent as metadata[key]=value.
- `pageSize` (integer): Results per page (max 100). Default 25.
- `sortBy` (string): Field to sort by.
- `sortOrder` (string): Sort direction.
- `tags` (array): Filter by tags (all must match). Sent as tags[].
- `title` (string): Filter by video title (substring).

### `apivideo_get_video` (~70 tokens)

Get video

Get a single video object by id (title, assets, player URL, status flags). Read-only. GET /videos/{videoId}.

Input parameters:

- `videoId` (string, required): The video id, e.g. vi4k0jvEUuaTdRAEjQ4Jfrgz.

### `apivideo_get_video_status` (~53 tokens)

Get video status

Get encoding and ingest status for a video (upload progress, encoding qualities, playability). Read-only. GET /videos/{videoId}/status.

Input parameters:

- `videoId` (string, required): The video id.

### `apivideo_list_live_streams` (~126 tokens)

List live streams

List live streams in the account, with optional filters (streamKey, name) and sorting. Read-only. GET /live-streams.

Input parameters:

- `currentPage` (integer): Page number (1-based). Default 1.
- `name` (string): Filter by live stream name (substring).
- `pageSize` (integer): Results per page (max 100). Default 25.
- `sortBy` (string): Field to sort by.
- `sortOrder` (string): Sort direction.
- `streamKey` (string): Filter by exact stream key.

### `apivideo_get_live_stream` (~77 tokens)

Get live stream

Get a single live stream object by id (stream key, RTMP ingest, player URL). Read-only. GET /live-streams/{liveStreamId}.

Input parameters:

- `liveStreamId` (string, required): The live stream id, e.g. li400mYKSgQ6xs7taUeSaEup.

### `apivideo_list_captions` (~88 tokens)

List captions

List caption tracks for a video (language, source URL, default flag). Read-only. GET /videos/{videoId}/captions.

Input parameters:

- `currentPage` (integer): Page number (1-based). Default 1.
- `pageSize` (integer): Results per page (max 100). Default 25.
- `videoId` (string, required): The video id.

### `apivideo_list_chapters` (~79 tokens)

List chapters

List chapter tracks for a video. Read-only. GET /videos/{videoId}/chapters.

Input parameters:

- `currentPage` (integer): Page number (1-based). Default 1.
- `pageSize` (integer): Results per page (max 100). Default 25.
- `videoId` (string, required): The video id.

### `apivideo_list_players` (~84 tokens)

List players

List customized player themes in the account. Read-only. GET /players.

Input parameters:

- `currentPage` (integer): Page number (1-based). Default 1.
- `pageSize` (integer): Results per page (max 100). Default 25.
- `sortBy` (string): Field to sort by.
- `sortOrder` (string): Sort direction.

### `apivideo_list_webhooks` (~91 tokens)

List webhooks

List webhooks configured in the account, optionally filtered by event name. Read-only. GET /webhooks.

Input parameters:

- `currentPage` (integer): Page number (1-based). Default 1.
- `events` (string): Filter by event name, e.g. "video.encoding.quality.completed".
- `pageSize` (integer): Results per page (max 100). Default 25.

### `apivideo_get_video_analytics` (~136 tokens)

Video analytics (plays)

Aggregated play analytics for videos over a date range, grouped by a dimension. Read-only. GET /analytics/videos/plays.

Input parameters:

- `currentPage` (integer): Page number (1-based). Default 1.
- `dimension` (string, required): Dimension to group plays by.
- `filter` (string): Filter expression, e.g. "videoId:vi123".
- `from` (string, required): Start date yyyy-mm-dd (inclusive). Required.
- `pageSize` (integer): Results per page (max 100). Default 25.
- `to` (string): End date yyyy-mm-dd (inclusive).

### `apivideo_get_live_stream_analytics` (~141 tokens)

Live stream analytics (plays)

Aggregated play analytics for live streams over a date range, grouped by a dimension. Read-only. GET /analytics/live-streams/plays.

Input parameters:

- `currentPage` (integer): Page number (1-based). Default 1.
- `dimension` (string, required): Dimension to group plays by.
- `filter` (string): Filter expression, e.g. "liveStreamId:li123".
- `from` (string, required): Start date yyyy-mm-dd (inclusive). Required.
- `pageSize` (integer): Results per page (max 100). Default 25.
- `to` (string): End date yyyy-mm-dd (inclusive).

### `apivideo_create_video` (~199 tokens)

Create video (write)

WRITE. Create a new video object. If `source` (a public video URL) is provided, api.video ingests the video from that URL — recommended for hosted use, since raw file bytes cannot stream through MCP. POST /videos.

Input parameters:

- `description` (string): Video description.
- `metadata` (object): Key/value metadata pairs (sent as [{key,value}]).
- `mp4Support` (boolean): Whether to also generate a downloadable MP4.
- `panoramic` (boolean): Whether the video is a 360/panoramic video.
- `playerId` (string): Id of a custom player theme to attach.
- `public` (boolean): Whether the video is public (default true) or private.
- `source` (string): Public URL of a video file to ingest from. Recommended over uploading bytes.
- `tags` (array): Tags for the video.
- `title` (string, required): Video title. Required.

### `apivideo_update_video` (~125 tokens)

Update video (write)

WRITE. Update fields on an existing video. Only the provided fields are changed. PATCH /videos/{videoId}.

Input parameters:

- `description` (string): New description.
- `metadata` (object): Replacement metadata (sent as [{key,value}]).
- `panoramic` (boolean): New panoramic flag.
- `playerId` (string): Player theme id to attach.
- `public` (boolean): New public/private flag.
- `tags` (array): Replacement tag list.
- `title` (string): New title.
- `videoId` (string, required): The video id to update.

### `apivideo_delete_video` (~49 tokens)

Delete video (write)

WRITE. Permanently DELETE a video and all its assets. This cannot be undone. DELETE /videos/{videoId}.

Input parameters:

- `videoId` (string, required): The video id to permanently delete.

### `apivideo_create_live_stream` (~85 tokens)

Create live stream (write)

WRITE. Create a new live stream, returning a stream key and RTMP ingest URL to broadcast to. POST /live-streams.

Input parameters:

- `name` (string, required): Live stream name. Required.
- `playerId` (string): Id of a custom player theme to attach.
- `public` (boolean): Whether the stream is public (default true) or private.

## Diagnostics

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

## Score history

- 2026-08-03: 73
- 2026-08-02: 73
- 2026-08-01: 72
- 2026-07-31: 72
- 2026-07-30: 69
- 2026-07-29: 71
- 2026-07-28: 70
- 2026-07-27: 69
- 2026-07-26: 12

## Links

- Remote endpoint: https://apivideo.usefulapi.io/mcp
- Repository: https://github.com/m190/usefulapi-mcp
- Changelog RSS feed: https://verifymcp.io/servers/io-usefulapi-apivideo/apivideo/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/io-usefulapi-apivideo/apivideo/changelog.json
- HTML version of this page: https://verifymcp.io/servers/io-usefulapi-apivideo/apivideo
