Viddler
com.viddler/viddler-mcpOfficial Viddler MCP: list videos, manage access control, pull proof-of-viewing analytics.
Tools · 12
File a feature request, bug report, or general feedback to the Viddler team from inside your MCP client. Goes into the same triage queue as the in-app feedback widget. Use category 'feature' for featu…
Gate a video behind a secret password. While protected, playback (including embeds) requires the password and Viddler swaps to a Mux signed-playback id. Returns the updated protection state.
Turn off password protection for a video. Reverts to the public playback id so the video plays without a password again.
Give a video a branded, human-friendly custom URL slug for sharing. Returns the updated video.
Return view counts and per-view records for a video: total views, remaining/available views, and the viewer log. The core 'who watched' proof-of-viewing data.
Return the authenticated account's plan, quota used/remaining, and video count.
List videos owned by the authenticated account.
Fetch the full record for one video: status, playback id, duration, moderation, storage state, protection. Poll this after create_upload until muxPlaybackId is no longer 'pending'.
Update a video's title.
Update a video's description.
Step 1 of uploading a video. Returns { uploadId, uploadUrl }. PUT the raw video file bytes to uploadUrl (e.g. `curl -X PUT --upload-file video.mp4 '<uploadUrl>'` — no auth header needed, the URL is pr…
Step 2 of uploading a video: after the file has been PUT to the uploadUrl, call this with the uploadId to create the video record. Returns the video (muxPlaybackId will be 'pending'). Poll viddler_vid…
Similar MCP servers embedding-nearest
How to use
Add to your Claude Desktop / Cursor / Cline MCP config:
{
"mcpServers": {
"viddler": {
"url": "https://mcp.viddler.com/mcp",
"transport": "streamable-http"
}
}
}