user_videos
Pack: vimeo · Endpoint: https://gateway.pipeworx.io/vimeo/mcp
List videos uploaded by a Vimeo user (user_id); supports pagination (page, per_page) and sorting; returns video metadata array.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
user_id | string | yes |
Example call
Arguments
{
"user_id": "user123"
}
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":"user_videos","arguments":{"user_id":"user123"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('user_videos', {
"user_id": "user123"
});
Response shape
| Field | Type | Description |
|---|---|---|
total | number | Total videos by user |
page | number | Current page |
per_page | number | Items per page |
paging | object | Pagination links |
data | array | Array of user videos |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total videos by user"
},
"page": {
"type": "number",
"description": "Current page"
},
"per_page": {
"type": "number",
"description": "Items per page"
},
"paging": {
"type": "object",
"description": "Pagination links"
},
"data": {
"type": "array",
"items": {
"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"
},
"created_time": {
"type": "string",
"description": "Creation timestamp"
},
"pictures": {
"type": "object",
"description": "Picture/thumbnail data"
}
}
},
"description": "Array of user videos"
}
}
}
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.