search_multi

Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp

Search TMDB across movies, TV shows, and people simultaneously with a single keyword query. Returns mixed results each tagged with media_type (movie/tv/person), useful when the content type is unknown.

Parameters

NameTypeRequiredDescription
querystringyes
pagenumberno
languagestringno
include_adultbooleanno

Example call

Arguments

{
  "query": "Avatar"
}

curl

curl -X POST https://gateway.pipeworx.io/tmdb/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"search_multi","arguments":{"query":"Avatar"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_multi', {
  "query": "Avatar"
});

More examples

{
  "query": "Christopher Nolan",
  "language": "en-US"
}

Response shape

FieldTypeDescription
pagenumberCurrent page number
resultsarrayArray of mixed type search results
total_pagesnumberTotal number of pages available
total_resultsnumberTotal number of results
Full JSON Schema
{
  "type": "object",
  "properties": {
    "page": {
      "type": "number",
      "description": "Current page number"
    },
    "results": {
      "type": "array",
      "description": "Array of mixed type search results",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Entity ID"
          },
          "media_type": {
            "type": "string",
            "enum": [
              "movie",
              "tv",
              "person"
            ],
            "description": "Type of media"
          }
        }
      }
    },
    "total_pages": {
      "type": "number",
      "description": "Total number of pages available"
    },
    "total_results": {
      "type": "number",
      "description": "Total number of results"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "tmdb": {
      "url": "https://gateway.pipeworx.io/tmdb/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026