video_popular

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

Fetch Pexels’ popular video feed; returns paginated video objects with file URLs at multiple resolutions, duration, and videographer info.

Example call

Arguments

{}

curl

curl -X POST https://gateway.pipeworx.io/pexels/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"video_popular","arguments":{}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('video_popular', {});

Response shape

FieldTypeDescription
pagenumberCurrent page number
per_pagenumberNumber of results per page
videosarrayArray of popular video objects
total_resultsnumberTotal number of results available
next_pagestringURL for next page of results
urlstring
Full JSON Schema
{
  "type": "object",
  "properties": {
    "page": {
      "type": "number",
      "description": "Current page number"
    },
    "per_page": {
      "type": "number",
      "description": "Number of results per page"
    },
    "videos": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Video ID"
          },
          "width": {
            "type": "number",
            "description": "Video width in pixels"
          },
          "height": {
            "type": "number",
            "description": "Video height in pixels"
          },
          "duration": {
            "type": "number",
            "description": "Video duration in seconds"
          },
          "full_res": {
            "type": "null"
          },
          "tags": {
            "type": "array",
            "items": {}
          },
          "url": {
            "type": "string",
            "description": "URL to video page"
          },
          "image": {
            "type": "string",
            "description": "Thumbnail image URL"
          },
          "avg_color": {
            "type": "null",
            "description": "Average color as hex"
          },
          "user": {
            "type": "object",
            "properties": {
              "id": {
                "type": "number",
                "description": "User ID"
              },
              "name": {
                "type": "string",
                "description": "Videographer name"
              },
              "url": {
                "type": "string",
                "description": "User profile URL"
              }
            },
            "description": "Videographer information"
          },
          "video_files": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "number",
                  "description": "File ID"
                },
                "quality": {
                  "type": "string",
                  "description": "Video quality (e.g., hd, sd, mobile)"
                },
                "file_type": {
                  "type": "string"
                },
                "width": {
                  "type": "number",
                  "description": "File width in pixels"
                },
                "height": {
                  "type": "number",
                  "description": "File height in pixels"
                },
                "fps": {
                  "type": "number"
                },
                "link": {
                  "type": "string",
                  "description": "Download URL"
                },
                "size": {
                  "type": "number"
                }
              }
            },
            "description": "Available video file formats"
          },
          "video_pictures": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {
                "id": {
                  "type": "number"
                },
                "nr": {
                  "type": "number"
                },
                "picture": {
                  "type": "string"
                }
              }
            }
          }
        }
      },
      "description": "Array of popular video objects"
    },
    "total_results": {
      "type": "number",
      "description": "Total number of results available"
    },
    "next_page": {
      "type": "string",
      "description": "URL for next page of results"
    },
    "url": {
      "type": "string"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "pexels": {
      "url": "https://gateway.pipeworx.io/pexels/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 9, 2026