title_search
Pack: watchmode · Endpoint: https://gateway.pipeworx.io/watchmode/mcp
Search Watchmode for movies and TV shows by name (or IMDb/TMDb ID via search_field); optionally filter by type (movie, tv_series, etc.). Returns Watchmode title IDs.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
search_value | string | yes | |
search_field | string | no | |
types | string | no |
Example call
Arguments
{
"search_value": "Breaking Bad"
}
curl
curl -X POST https://gateway.pipeworx.io/watchmode/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"title_search","arguments":{"search_value":"Breaking Bad"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('title_search', {
"search_value": "Breaking Bad"
});
More examples
{
"search_value": "Inception",
"search_field": "title",
"types": "movie"
}
Response shape
Full JSON Schema
{
"type": "object",
"description": "Search results for titles from Watchmode API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"watchmode": {
"url": "https://gateway.pipeworx.io/watchmode/mcp"
}
}
}
See Getting Started for client-specific install steps.