category_videos

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

Videos in a category.

Parameters

NameTypeRequiredDescription
slugstringyes
pagenumberno
per_pagenumberno

Example call

Arguments

{
  "slug": "animation"
}

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":"category_videos","arguments":{"slug":"animation"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('category_videos', {
  "slug": "animation"
});

Response shape

FieldTypeDescription
totalnumberTotal videos in category
pagenumberCurrent page
per_pagenumberItems per page
pagingobjectPagination links
dataarrayArray of category videos
Full JSON Schema
{
  "type": "object",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total videos in category"
    },
    "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"
          },
          "user": {
            "type": "object",
            "description": "Uploader user object"
          }
        }
      },
      "description": "Array of category 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