apivideo
Server Details
Manage videos and live streams, inspect captions, players and webhooks, and read play analytics.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- m190/usefulapi-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Score is being calculated. Check back soon.
Available Tools
15 toolsapivideo_create_live_streamCreate live stream (write)DestructiveInspect
WRITE. Create a new live stream, returning a stream key and RTMP ingest URL to broadcast to. POST /live-streams.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Live stream name. Required. | |
| public | No | Whether the stream is public (default true) or private. | |
| playerId | No | Id of a custom player theme to attach. |
apivideo_create_videoCreate video (write)DestructiveInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Tags for the video. | |
| title | Yes | Video title. Required. | |
| public | No | Whether the video is public (default true) or private. | |
| source | No | Public URL of a video file to ingest from. Recommended over uploading bytes. | |
| metadata | No | Key/value metadata pairs (sent as [{key,value}]). | |
| playerId | No | Id of a custom player theme to attach. | |
| panoramic | No | Whether the video is a 360/panoramic video. | |
| mp4Support | No | Whether to also generate a downloadable MP4. | |
| description | No | Video description. |
apivideo_delete_videoDelete video (write)DestructiveInspect
WRITE. Permanently DELETE a video and all its assets. This cannot be undone. DELETE /videos/{videoId}.
| Name | Required | Description | Default |
|---|---|---|---|
| videoId | Yes | The video id to permanently delete. |
apivideo_get_live_streamGet live streamRead-onlyInspect
Get a single live stream object by id (stream key, RTMP ingest, player URL). Read-only. GET /live-streams/{liveStreamId}.
| Name | Required | Description | Default |
|---|---|---|---|
| liveStreamId | Yes | The live stream id, e.g. li400mYKSgQ6xs7taUeSaEup. |
apivideo_get_live_stream_analyticsLive stream analytics (plays)Read-onlyInspect
Aggregated play analytics for live streams over a date range, grouped by a dimension. Read-only. GET /analytics/live-streams/plays.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End date yyyy-mm-dd (inclusive). | |
| from | Yes | Start date yyyy-mm-dd (inclusive). Required. | |
| filter | No | Filter expression, e.g. "liveStreamId:li123". | |
| pageSize | No | Results per page (max 100). Default 25. | |
| dimension | Yes | Dimension to group plays by. | |
| currentPage | No | Page number (1-based). Default 1. |
apivideo_get_videoGet videoRead-onlyInspect
Get a single video object by id (title, assets, player URL, status flags). Read-only. GET /videos/{videoId}.
| Name | Required | Description | Default |
|---|---|---|---|
| videoId | Yes | The video id, e.g. vi4k0jvEUuaTdRAEjQ4Jfrgz. |
apivideo_get_video_analyticsVideo analytics (plays)Read-onlyInspect
Aggregated play analytics for videos over a date range, grouped by a dimension. Read-only. GET /analytics/videos/plays.
| Name | Required | Description | Default |
|---|---|---|---|
| to | No | End date yyyy-mm-dd (inclusive). | |
| from | Yes | Start date yyyy-mm-dd (inclusive). Required. | |
| filter | No | Filter expression, e.g. "videoId:vi123". | |
| pageSize | No | Results per page (max 100). Default 25. | |
| dimension | Yes | Dimension to group plays by. | |
| currentPage | No | Page number (1-based). Default 1. |
apivideo_get_video_statusGet video statusRead-onlyInspect
Get encoding and ingest status for a video (upload progress, encoding qualities, playability). Read-only. GET /videos/{videoId}/status.
| Name | Required | Description | Default |
|---|---|---|---|
| videoId | Yes | The video id. |
apivideo_list_captionsList captionsRead-onlyInspect
List caption tracks for a video (language, source URL, default flag). Read-only. GET /videos/{videoId}/captions.
| Name | Required | Description | Default |
|---|---|---|---|
| videoId | Yes | The video id. | |
| pageSize | No | Results per page (max 100). Default 25. | |
| currentPage | No | Page number (1-based). Default 1. |
apivideo_list_chaptersList chaptersRead-onlyInspect
List chapter tracks for a video. Read-only. GET /videos/{videoId}/chapters.
| Name | Required | Description | Default |
|---|---|---|---|
| videoId | Yes | The video id. | |
| pageSize | No | Results per page (max 100). Default 25. | |
| currentPage | No | Page number (1-based). Default 1. |
apivideo_list_live_streamsList live streamsRead-onlyInspect
List live streams in the account, with optional filters (streamKey, name) and sorting. Read-only. GET /live-streams.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | Filter by live stream name (substring). | |
| sortBy | No | Field to sort by. | |
| pageSize | No | Results per page (max 100). Default 25. | |
| sortOrder | No | Sort direction. | |
| streamKey | No | Filter by exact stream key. | |
| currentPage | No | Page number (1-based). Default 1. |
apivideo_list_playersList playersRead-onlyInspect
List customized player themes in the account. Read-only. GET /players.
| Name | Required | Description | Default |
|---|---|---|---|
| sortBy | No | Field to sort by. | |
| pageSize | No | Results per page (max 100). Default 25. | |
| sortOrder | No | Sort direction. | |
| currentPage | No | Page number (1-based). Default 1. |
apivideo_list_videosList videosRead-onlyInspect
List videos in the account, with optional filters (title, tags, metadata, description, liveStreamId) and sorting. Read-only. GET /videos.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Filter by tags (all must match). Sent as tags[]. | |
| title | No | Filter by video title (substring). | |
| sortBy | No | Field to sort by. | |
| metadata | No | Filter by metadata key/value pairs. Sent as metadata[key]=value. | |
| pageSize | No | Results per page (max 100). Default 25. | |
| sortOrder | No | Sort direction. | |
| currentPage | No | Page number (1-based). Default 1. | |
| description | No | Filter by description (substring). | |
| liveStreamId | No | Return only videos recorded from this live stream id. |
apivideo_list_webhooksList webhooksRead-onlyInspect
List webhooks configured in the account, optionally filtered by event name. Read-only. GET /webhooks.
| Name | Required | Description | Default |
|---|---|---|---|
| events | No | Filter by event name, e.g. "video.encoding.quality.completed". | |
| pageSize | No | Results per page (max 100). Default 25. | |
| currentPage | No | Page number (1-based). Default 1. |
apivideo_update_videoUpdate video (write)DestructiveInspect
WRITE. Update fields on an existing video. Only the provided fields are changed. PATCH /videos/{videoId}.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Replacement tag list. | |
| title | No | New title. | |
| public | No | New public/private flag. | |
| videoId | Yes | The video id to update. | |
| metadata | No | Replacement metadata (sent as [{key,value}]). | |
| playerId | No | Player theme id to attach. | |
| panoramic | No | New panoramic flag. | |
| description | No | New description. |
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!