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

NameTypeRequiredDescription
channel_id_or_slugstringyes

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

FieldTypeDescription
totalnumberTotal videos in channel
pagenumberCurrent page
per_pagenumberItems per page
pagingobjectPagination links
dataarrayArray 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.

Regenerated from source · build July 6, 2026