featured
Pack: tenor · Endpoint: https://gateway.pipeworx.io/tenor/mcp
Fetch Tenor’s current editorially featured GIFs; supports locale, content filter, aspect-ratio range, and pagination; returns media URLs and metadata.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
locale | string | no | |
contentfilter | string | no | |
media_filter | string | no | |
ar_range | string | no | |
limit | number | no | |
pos | string | no |
Example call
Arguments
{
"limit": 20
}
curl
curl -X POST https://gateway.pipeworx.io/tenor/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"featured","arguments":{"limit":20}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('featured', {
"limit": 20
});
More examples
{
"locale": "en_US",
"contentfilter": "high"
}
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Featured GIFs |
next | string | Pagination token for next results |
Full JSON Schema
{
"type": "object",
"properties": {
"results": {
"type": "array",
"description": "Featured GIFs",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "GIF ID"
},
"title": {
"type": "string",
"description": "Title"
},
"media_formats": {
"type": "object",
"description": "Media formats"
},
"created": {
"type": "number",
"description": "Creation timestamp"
},
"content_description": {
"type": "string",
"description": "Content description"
},
"itemurl": {
"type": "string",
"description": "Item URL"
},
"url": {
"type": "string",
"description": "GIF URL"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Associated tags"
},
"shares": {
"type": "integer",
"description": "Share count"
},
"hasaudio": {
"type": "boolean",
"description": "Has audio"
}
}
}
},
"next": {
"type": "string",
"description": "Pagination token for next results"
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tenor": {
"url": "https://gateway.pipeworx.io/tenor/mcp"
}
}
}
See Getting Started for client-specific install steps.