channel
Pack: vimeo · Endpoint: https://gateway.pipeworx.io/vimeo/mcp
Fetch metadata for a Vimeo channel by numeric ID or slug; returns channel name, description, subscriber count, video count, and privacy settings.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
channel_id_or_slug | string | yes |
Example call
Arguments
{
"channel_id_or_slug": "staffpicks"
}
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":"channel","arguments":{"channel_id_or_slug":"staffpicks"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('channel', {
"channel_id_or_slug": "staffpicks"
});
Response shape
| Field | Type | Description |
|---|---|---|
uri | string | Channel URI |
name | string | Channel name |
description | string | Channel description |
link | string | Channel link |
created_time | string | Creation timestamp |
modified_time | string | Last modified timestamp |
pictures | object | Channel picture/banner data |
privacy | string | Privacy level |
metadata | object | Additional metadata |
user | object | Channel owner |
Full JSON Schema
{
"type": "object",
"properties": {
"uri": {
"type": "string",
"description": "Channel URI"
},
"name": {
"type": "string",
"description": "Channel name"
},
"description": {
"type": "string",
"description": "Channel description"
},
"link": {
"type": "string",
"description": "Channel link"
},
"created_time": {
"type": "string",
"description": "Creation timestamp"
},
"modified_time": {
"type": "string",
"description": "Last modified timestamp"
},
"pictures": {
"type": "object",
"description": "Channel picture/banner data"
},
"privacy": {
"type": "string",
"description": "Privacy level"
},
"metadata": {
"type": "object",
"description": "Additional metadata"
},
"user": {
"type": "object",
"description": "Channel owner"
}
}
}
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.