categories
Pack: vimeo · Endpoint: https://gateway.pipeworx.io/vimeo/mcp
Return the full list of top-level Vimeo content categories (e.g. Animation, Comedy, Music) with slugs usable in category_videos.
Example call
Arguments
{}
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":"categories","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('categories', {});
Response shape
| Field | Type | Description |
|---|---|---|
total | number | Total categories |
page | number | Current page |
per_page | number | Items per page |
paging | object | Pagination links |
data | array | Array of categories |
Full JSON Schema
{
"type": "object",
"properties": {
"total": {
"type": "number",
"description": "Total categories"
},
"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": "Category URI"
},
"name": {
"type": "string",
"description": "Category name"
},
"slug": {
"type": "string",
"description": "Category slug"
},
"link": {
"type": "string",
"description": "Category link"
},
"pictures": {
"type": "object",
"description": "Category picture data"
},
"metadata": {
"type": "object",
"description": "Additional metadata"
}
}
},
"description": "Array of categories"
}
}
}
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.