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

NameTypeRequiredDescription
channel_id_or_slugstringyes

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

FieldTypeDescription
uristringChannel URI
namestringChannel name
descriptionstringChannel description
linkstringChannel link
created_timestringCreation timestamp
modified_timestringLast modified timestamp
picturesobjectChannel picture/banner data
privacystringPrivacy level
metadataobjectAdditional metadata
userobjectChannel 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.

Regenerated from source · build July 6, 2026