tv_season

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

Fetch details for a specific TV season by tv_id and season_number. Returns season name, overview, air date, episode count, and a list of episodes with name, air date, and overview.

Parameters

NameTypeRequiredDescription
tv_idnumberyes
season_numbernumberyes
languagestringno

Example call

Arguments

{
  "tv_id": 1396,
  "season_number": 1
}

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

TypeScript (@pipeworx/sdk)

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

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

Response shape

FieldTypeDescription
idnumberSeason ID
season_numbernumberSeason number
air_datestringAir date
episodesarrayEpisodes in season
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "Season ID"
    },
    "season_number": {
      "type": "number",
      "description": "Season number"
    },
    "air_date": {
      "type": "string",
      "description": "Air date"
    },
    "episodes": {
      "type": "array",
      "description": "Episodes in season",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Episode ID"
          },
          "episode_number": {
            "type": "number",
            "description": "Episode number"
          },
          "name": {
            "type": "string",
            "description": "Episode name"
          }
        }
      }
    }
  }
}

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