category

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

Fetch metadata for a single Vimeo category by slug; returns category name, icon, subcategories, and featured video count.

Parameters

NameTypeRequiredDescription
slugstringyes

Example call

Arguments

{
  "slug": "animation"
}

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":"category","arguments":{"slug":"animation"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('category', {
  "slug": "animation"
});

Response shape

FieldTypeDescription
uristringCategory URI
namestringCategory name
slugstringCategory slug
linkstringCategory link
descriptionstringCategory description
picturesobjectCategory picture data
metadataobjectAdditional metadata
parentobjectParent category if applicable
Full JSON Schema
{
  "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"
    },
    "description": {
      "type": "string",
      "description": "Category description"
    },
    "pictures": {
      "type": "object",
      "description": "Category picture data"
    },
    "metadata": {
      "type": "object",
      "description": "Additional metadata"
    },
    "parent": {
      "type": "object",
      "description": "Parent category if applicable"
    }
  }
}

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