trending_terms
Pack: tenor · Endpoint: https://gateway.pipeworx.io/tenor/mcp
Trending search terms.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
locale | string | no | |
limit | number | no |
Example call
Arguments
{
"limit": 10
}
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":"trending_terms","arguments":{"limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('trending_terms', {
"limit": 10
});
More examples
{
"locale": "en_US",
"limit": 5
}
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Trending search terms |
Full JSON Schema
{
"type": "object",
"properties": {
"results": {
"type": "array",
"description": "Trending search terms",
"items": {
"type": "string"
}
}
}
}
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.