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