videos_search
Pack: vimeo · Endpoint: https://gateway.pipeworx.io/vimeo/mcp
Search videos.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
filter | string | no |
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
| Field | Type | Description |
|---|---|---|
total | number | Total matching videos |
page | number | Current page |
per_page | number | Items per page |
paging | object | Pagination links |
data | array | Array 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.