KosmoKrator

media

Vimeo MCP Integration for Vercel AI SDK

Connect Vimeo to Vercel AI SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

6 functions 5 read 1 write Bearer token auth

Connect Vimeo to Vercel AI SDK

Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts.

Create an MCP client that starts or connects to the KosmoKrator gateway for the selected integration. The gateway is local, scoped to this integration, and starts with --write=deny so Vercel AI SDK can inspect read-capable tools without receiving write access by default.

Vimeo MCP Config for Vercel AI SDK

Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.

{
  "mcpServers": {
    "kosmokrator-vimeo": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=vimeo",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=vimeo --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only Vimeo instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Vimeo Tools Visible to Vercel AI SDK

Vercel AI SDK sees stable MCP tool names generated from the Vimeo integration catalog.

MCP toolSource functionTypeDescription
integration__vimeo__vimeo_create_video vimeo.vimeo_create_video Write 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.
integration__vimeo__vimeo_get_current_user vimeo.vimeo_get_current_user Read Get the authenticated Vimeo user's profile information. Returns name, bio, location, account type, upload quota, and profile pictures.
integration__vimeo__vimeo_get_video vimeo.vimeo_get_video Read Get detailed information about a single Vimeo video by its ID. Returns name, description, duration, thumbnails, privacy, stats, and playback links.
integration__vimeo__vimeo_list_albums vimeo.vimeo_list_albums Read List albums (showcases) for the authenticated Vimeo user. Supports pagination, query search, sorting, and direction. Returns album names, descriptions, thumbnails, and video counts.
integration__vimeo__vimeo_list_folders vimeo.vimeo_list_folders Read List folders (projects) for the authenticated Vimeo user. Supports pagination and query search. Returns folder names, descriptions, and item counts.
integration__vimeo__vimeo_list_videos vimeo.vimeo_list_videos Read 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.

Related Vimeo Pages