KosmoKrator

productivity

Vimeo MCP, CLI, and Lua Integration for AI Agents

Vimeo integration docs for AI agents: MCP gateway setup, Vimeo CLI commands, Lua API reference, credentials, and function schemas.

Vimeo for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
vimeo.vimeo_list_videos Read read 8 List videos for the authenticated Vimeo user. Supports pagination, full-text search via query, and filters (e.g., embeddable, playable, privacy). Returns video URIs, names, durations, thumbnails, and metadata.
vimeo.vimeo_get_video Read read 1 Get detailed information about a single Vimeo video by its ID. Returns name, description, duration, thumbnails, privacy, stats, and playback links.
vimeo.vimeo_create_video Write write 7 Create a new video upload slot on Vimeo. Choose an upload approach: "pull" (Vimeo downloads from a URL), "post" (you POST to an upload link), or "streaming" (Tus protocol). Returns the video URI and upload target.
vimeo.vimeo_upload_video Write write 3 Create an upload ticket for a new video on Vimeo. Returns the upload URL and video object. Use the upload link to POST the video file binary.
vimeo.vimeo_update_video Write write 0 Update a video.
vimeo.vimeo_delete_video Write write 1 Delete a video from Vimeo permanently. This action cannot be undone.
vimeo.vimeo_list_video_comments Read read 0 List comments for a video.
vimeo.vimeo_create_video_comment Write write 0 Create a video comment.
vimeo.vimeo_list_video_text_tracks Read read 0 List video captions and subtitles.
vimeo.vimeo_create_video_text_track Write write 0 Create a video text track.
vimeo.vimeo_list_video_pictures Read read 0 List video thumbnails.
vimeo.vimeo_list_albums Read read 5 List albums (showcases) for the authenticated Vimeo user. Supports pagination, query search, sorting, and direction. Returns album names, descriptions, thumbnails, and video counts.
vimeo.vimeo_get_album Read read 1 Get detailed information about a single Vimeo album (showcase) by its ID.
vimeo.vimeo_create_album Write write 0 Create an album/showcase.
vimeo.vimeo_update_album Write write 0 Update an album/showcase.
vimeo.vimeo_list_album_videos Read read 0 List videos in an album/showcase.
vimeo.vimeo_add_video_to_album Write write 0 Add a video to an album/showcase.
vimeo.vimeo_list_folders Read read 3 List folders (projects) for the authenticated Vimeo user. Supports pagination and query search. Returns folder names, descriptions, and item counts.
vimeo.vimeo_create_folder Write write 0 Create a folder/project.
vimeo.vimeo_update_folder Write write 0 Update a folder/project.
vimeo.vimeo_list_channels Read read 2 List public Vimeo channels. Returns paginated results with channel metadata.
vimeo.vimeo_list_categories Read read 0 List Vimeo categories.
vimeo.vimeo_get_current_user Read read 0 Get the authenticated Vimeo user's profile information. Returns name, bio, location, account type, upload quota, and profile pictures.
vimeo.vimeo_api_get Read read 0 Call a documented GET endpoint.
vimeo.vimeo_api_post Write write 0 Call a documented POST endpoint.
vimeo.vimeo_api_patch Write write 0 Call a documented PATCH endpoint.
vimeo.vimeo_api_delete Write write 0 Call a documented DELETE endpoint.