video

Pack: vimeo · Endpoint: https://gateway.pipeworx.io/vimeo/mcp

Fetch metadata for a single Vimeo video by numeric or string ID; returns title, description, duration, embed URLs, privacy settings, stats, and owner info.

Parameters

NameTypeRequiredDescription
idstringyes

Example call

Arguments

{
  "id": "76979871"
}

curl

curl -X POST https://gateway.pipeworx.io/vimeo/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"video","arguments":{"id":"76979871"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('video', {
  "id": "76979871"
});

Response shape

FieldTypeDescription
uristringVideo URI
namestringVideo title
descriptionstringVideo description
durationnumberDuration in seconds
widthnumberVideo width
heightnumberVideo height
created_timestringCreation timestamp
modified_timestringLast modified timestamp
release_timestringRelease timestamp
content_ratingarrayContent ratings
licensestringLicense type
privacyobjectPrivacy settings
picturesobjectPicture/thumbnail data
tagsarrayVideo tags
statsobjectVideo statistics
metadataobjectAdditional metadata
userobjectUploader user object
embedobjectEmbed settings
statusstringVideo processing status
Full JSON Schema
{
  "type": "object",
  "properties": {
    "uri": {
      "type": "string",
      "description": "Video URI"
    },
    "name": {
      "type": "string",
      "description": "Video title"
    },
    "description": {
      "type": "string",
      "description": "Video description"
    },
    "duration": {
      "type": "number",
      "description": "Duration in seconds"
    },
    "width": {
      "type": "number",
      "description": "Video width"
    },
    "height": {
      "type": "number",
      "description": "Video height"
    },
    "created_time": {
      "type": "string",
      "description": "Creation timestamp"
    },
    "modified_time": {
      "type": "string",
      "description": "Last modified timestamp"
    },
    "release_time": {
      "type": "string",
      "description": "Release timestamp"
    },
    "content_rating": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "Content ratings"
    },
    "license": {
      "type": "string",
      "description": "License type"
    },
    "privacy": {
      "type": "object",
      "description": "Privacy settings"
    },
    "pictures": {
      "type": "object",
      "description": "Picture/thumbnail data"
    },
    "tags": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Video tags"
    },
    "stats": {
      "type": "object",
      "description": "Video statistics"
    },
    "metadata": {
      "type": "object",
      "description": "Additional metadata"
    },
    "user": {
      "type": "object",
      "description": "Uploader user object"
    },
    "embed": {
      "type": "object",
      "description": "Embed settings"
    },
    "status": {
      "type": "string",
      "description": "Video processing status"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "vimeo": {
      "url": "https://gateway.pipeworx.io/vimeo/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026