videos_search

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

Search videos.

Parameters

NameTypeRequiredDescription
querystringyes
filterstringno

Example call

Arguments

{
  "query": "javascript tutorial"
}

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":"videos_search","arguments":{"query":"javascript tutorial"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('videos_search', {
  "query": "javascript tutorial"
});

More examples

{
  "query": "motion design",
  "page": 1,
  "per_page": 10
}

Response shape

FieldTypeDescription
totalnumberTotal matching videos
pagenumberCurrent page
per_pagenumberItems per page
pagingobjectPagination links
dataarrayArray of matching videos
Full JSON Schema
{
  "type": "object",
  "properties": {
    "total": {
      "type": "number",
      "description": "Total matching videos"
    },
    "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"
          },
          "width": {
            "type": "number",
            "description": "Video width"
          },
          "height": {
            "type": "number",
            "description": "Video height"
          },
          "created_time": {
            "type": "string",
            "description": "Creation timestamp"
          },
          "pictures": {
            "type": "object",
            "description": "Picture/thumbnail data"
          },
          "user": {
            "type": "object",
            "description": "Uploader user object"
          }
        }
      },
      "description": "Array of matching 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