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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes |
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
| Field | Type | Description |
|---|---|---|
uri | string | Video URI |
name | string | Video title |
description | string | Video description |
duration | number | Duration in seconds |
width | number | Video width |
height | number | Video height |
created_time | string | Creation timestamp |
modified_time | string | Last modified timestamp |
release_time | string | Release timestamp |
content_rating | array | Content ratings |
license | string | License type |
privacy | object | Privacy settings |
pictures | object | Picture/thumbnail data |
tags | array | Video tags |
stats | object | Video statistics |
metadata | object | Additional metadata |
user | object | Uploader user object |
embed | object | Embed settings |
status | string | Video 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.