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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | |
page | number | no | |
language | string | no | |
include_adult | boolean | no |
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
| Field | Type | Description |
|---|---|---|
page | number | Current page number |
results | array | Array of mixed type search results |
total_pages | number | Total number of pages available |
total_results | number | Total 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.