search_suggestions
Pack: tenor · Endpoint: https://gateway.pipeworx.io/tenor/mcp
Return Tenor search query suggestions related to a partial query string (q); useful for building GIF search autocomplete UIs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
q | string | yes | |
locale | string | no | |
limit | number | no | |
client_key | string | no |
Example call
Arguments
{
"q": "cat"
}
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":"search_suggestions","arguments":{"q":"cat"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('search_suggestions', {
"q": "cat"
});
More examples
{
"q": "dance",
"limit": 5,
"locale": "en_US"
}
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Search suggestions |
Full JSON Schema
{
"type": "object",
"properties": {
"results": {
"type": "array",
"description": "Search suggestions",
"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.