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

NameTypeRequiredDescription
qstringyes
localestringno
limitnumberno
client_keystringno

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

FieldTypeDescription
resultsarraySearch 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.

Regenerated from source · build July 6, 2026