user

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

Fetch a Vimeo user’s public profile by user_id or vanity URL name; returns display name, bio, location, follower/following counts, and upload quota.

Parameters

NameTypeRequiredDescription
user_idstringyes

Example call

Arguments

{
  "user_id": "user123"
}

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":"user","arguments":{"user_id":"user123"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('user', {
  "user_id": "user123"
});

Response shape

FieldTypeDescription
uristringUser URI
namestringUser name
linkstringProfile link
locationstringUser location
biostringUser biography
created_timestringAccount creation timestamp
picturesobjectProfile picture data
websitesarrayAssociated websites
metadataobjectAdditional metadata
accountstringAccount type
Full JSON Schema
{
  "type": "object",
  "properties": {
    "uri": {
      "type": "string",
      "description": "User URI"
    },
    "name": {
      "type": "string",
      "description": "User name"
    },
    "link": {
      "type": "string",
      "description": "Profile link"
    },
    "location": {
      "type": "string",
      "description": "User location"
    },
    "bio": {
      "type": "string",
      "description": "User biography"
    },
    "created_time": {
      "type": "string",
      "description": "Account creation timestamp"
    },
    "pictures": {
      "type": "object",
      "description": "Profile picture data"
    },
    "websites": {
      "type": "array",
      "items": {
        "type": "object"
      },
      "description": "Associated websites"
    },
    "metadata": {
      "type": "object",
      "description": "Additional metadata"
    },
    "account": {
      "type": "string",
      "description": "Account type"
    }
  }
}

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