categories
Pack: tenor · Endpoint: https://gateway.pipeworx.io/tenor/mcp
Return Tenor’s GIF browse categories (e.g. trending, featured) with representative GIF previews; filterable by locale, type, and content safety level.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
locale | string | no | |
type | string | no | |
contentfilter | string | no |
Example call
Arguments
{
"locale": "en_US"
}
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":"categories","arguments":{"locale":"en_US"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('categories', {
"locale": "en_US"
});
More examples
{
"locale": "en_US",
"contentfilter": "medium"
}
Response shape
| Field | Type | Description |
|---|---|---|
tags | array | Category list |
Full JSON Schema
{
"type": "object",
"properties": {
"tags": {
"type": "array",
"description": "Category list",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Category name"
},
"searchterm": {
"type": "string",
"description": "Search term for category"
},
"image": {
"type": "string",
"description": "Category image URL"
},
"animated": {
"type": "boolean",
"description": "Is animated"
}
}
}
}
}
}
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.