tv

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

Fetch full TMDB TV show details by tv_id. Returns name, overview, first/last air date, number of seasons and episodes, genres, networks, status, and vote average.

Parameters

NameTypeRequiredDescription
tv_idnumberyes
append_to_responsestringno
languagestringno

Example call

Arguments

{
  "tv_id": 1396
}

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":"tv","arguments":{"tv_id":1396}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('tv', {
  "tv_id": 1396
});

More examples

{
  "tv_id": 1399,
  "append_to_response": "credits"
}

Response shape

FieldTypeDescription
idnumberTV show ID
namestringTV show name
first_air_datestringFirst air date
last_air_datestringLast air date
number_of_seasonsnumberNumber of seasons
number_of_episodesnumberNumber of episodes
vote_averagenumberAverage vote rating
overviewstringShow overview
genresarrayGenres
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "TV show ID"
    },
    "name": {
      "type": "string",
      "description": "TV show name"
    },
    "first_air_date": {
      "type": "string",
      "description": "First air date"
    },
    "last_air_date": {
      "type": "string",
      "description": "Last air date"
    },
    "number_of_seasons": {
      "type": "number",
      "description": "Number of seasons"
    },
    "number_of_episodes": {
      "type": "number",
      "description": "Number of episodes"
    },
    "vote_average": {
      "type": "number",
      "description": "Average vote rating"
    },
    "overview": {
      "type": "string",
      "description": "Show overview"
    },
    "genres": {
      "type": "array",
      "description": "Genres",
      "items": {
        "type": "object"
      }
    }
  }
}

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