get_tv_show

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

Get complete TV show details including episodes, air dates, and ratings. Requires show ID from search_tv_shows.

Parameters

NameTypeRequiredDescription
idnumberyesTVmaze show ID (e.g., 1 for “Under the Dome”)

Example call

Arguments

{
  "id": 1
}

curl

curl -X POST https://gateway.pipeworx.io/movies/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_tv_show","arguments":{"id":1}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_tv_show', {
  "id": 1
});

More examples

{
  "id": 169
}

Response shape

Always returns: id, name, type, language, genres, status, premiered, ended, rating, network, summary, url, image, episode_count, episodes

FieldTypeDescription
idnumberTVmaze show ID
namestringShow name
typestring | nullShow type
languagestring | nullPrimary language
genresarrayList of genres
statusstring | nullCurrent status
premieredstring | nullPremiere date
endedstring | nullEnd date
ratingnumber | nullAverage rating
networkstring | nullNetwork name
summarystring | nullShow summary
urlstring | nullTVmaze show URL
imagestring | nullPoster image URL
episode_countnumberTotal number of episodes
episodesarray
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "number",
      "description": "TVmaze show ID"
    },
    "name": {
      "type": "string",
      "description": "Show name"
    },
    "type": {
      "type": [
        "string",
        "null"
      ],
      "description": "Show type"
    },
    "language": {
      "type": [
        "string",
        "null"
      ],
      "description": "Primary language"
    },
    "genres": {
      "type": "array",
      "items": {
        "type": "string"
      },
      "description": "List of genres"
    },
    "status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Current status"
    },
    "premiered": {
      "type": [
        "string",
        "null"
      ],
      "description": "Premiere date"
    },
    "ended": {
      "type": [
        "string",
        "null"
      ],
      "description": "End date"
    },
    "rating": {
      "type": [
        "number",
        "null"
      ],
      "description": "Average rating"
    },
    "network": {
      "type": [
        "string",
        "null"
      ],
      "description": "Network name"
    },
    "summary": {
      "type": [
        "string",
        "null"
      ],
      "description": "Show summary"
    },
    "url": {
      "type": [
        "string",
        "null"
      ],
      "description": "TVmaze show URL"
    },
    "image": {
      "type": [
        "string",
        "null"
      ],
      "description": "Poster image URL"
    },
    "episode_count": {
      "type": "number",
      "description": "Total number of episodes"
    },
    "episodes": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": "number",
            "description": "Episode ID"
          },
          "season": {
            "type": "number",
            "description": "Season number"
          },
          "episode": {
            "type": [
              "number",
              "null"
            ],
            "description": "Episode number in season"
          },
          "name": {
            "type": "string",
            "description": "Episode name"
          },
          "airdate": {
            "type": [
              "string",
              "null"
            ],
            "description": "Air date in YYYY-MM-DD format"
          },
          "airtime": {
            "type": [
              "string",
              "null"
            ],
            "description": "Air time (HH:MM format)"
          },
          "runtime_minutes": {
            "type": [
              "number",
              "null"
            ],
            "description": "Episode runtime in minutes"
          },
          "summary": {
            "type": [
              "string",
              "null"
            ],
            "description": "Episode summary without HTML"
          }
        },
        "required": [
          "id",
          "season",
          "episode",
          "name",
          "airdate",
          "airtime",
          "runtime_minutes",
          "summary"
        ]
      }
    }
  },
  "required": [
    "id",
    "name",
    "type",
    "language",
    "genres",
    "status",
    "premiered",
    "ended",
    "rating",
    "network",
    "summary",
    "url",
    "image",
    "episode_count",
    "episodes"
  ]
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "movies": {
      "url": "https://gateway.pipeworx.io/movies/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026