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
| Name | Type | Required | Description |
|---|---|---|---|
user_id | string | yes |
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
| Field | Type | Description |
|---|---|---|
uri | string | User URI |
name | string | User name |
link | string | Profile link |
location | string | User location |
bio | string | User biography |
created_time | string | Account creation timestamp |
pictures | object | Profile picture data |
websites | array | Associated websites |
metadata | object | Additional metadata |
account | string | Account 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.