title_detail

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

Fetch full metadata for a Watchmode title by title_id: title, year, genres, plot, runtime, user rating, cast, and optionally streaming sources via append_to_response.

Parameters

NameTypeRequiredDescription
title_idstringyes
append_to_responsestringno

Example call

Arguments

{
  "title_id": "12345"
}

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_detail","arguments":{"title_id":"12345"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('title_detail', {
  "title_id": "12345"
});

More examples

{
  "title_id": "12345",
  "append_to_response": "sources,seasons"
}

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Detailed information about a specific title"
}

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.

Regenerated from source · build July 6, 2026