get_show

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

Fetch a full show record by TVMaze ID. Optionally embed episodes, cast, seasons, or previous/next episode info for richer responses.

Parameters

NameTypeRequiredDescription
show_idnumberyesTVMaze show ID
embed_episodesbooleannoInclude full episode list
embed_castbooleannoInclude cast
embed_seasonsbooleannoInclude season metadata

Example call

Arguments

{
  "show_id": 1,
  "embed_cast": true,
  "embed_episodes": true
}

curl

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

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_show', {
  "show_id": 1,
  "embed_cast": true,
  "embed_episodes": true
});

More examples

{
  "show_id": 169
}

Response shape

Always returns: id, name, genres

FieldTypeDescription
idnumber | nullTVMaze show ID
namestring | nullShow name
typestring | nullShow type (e.g., Scripted, Reality)
languagestring | nullPrimary language
genresarrayGenre tags
statusstring | nullShow status (Running, Ended)
runtime_minnumber | nullEpisode runtime in minutes
premieredstring | nullPremiere date (YYYY-MM-DD)
endedstring | nullEnd date (YYYY-MM-DD) or null
official_sitestring | nullOfficial website URL
ratingnumber | nullAverage rating (0-10)
networkstring | nullNetwork or web channel name
network_countrystring | null2-letter country code
imdb_idstring | nullIMDb ID
tvdb_idnumber | nullTheTVDB ID
imagestring | nullShow poster image URL
summarystring | nullHTML-stripped show summary
tvmaze_urlstring | nullTVMaze show page URL
episodesarrayFull episode list (if embed_episodes=true)
castarrayCast list (if embed_cast=true)
seasonsarraySeason metadata (if embed_seasons=true)
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": [
        "number",
        "null"
      ],
      "description": "TVMaze show ID"
    },
    "name": {
      "type": [
        "string",
        "null"
      ],
      "description": "Show name"
    },
    "type": {
      "type": [
        "string",
        "null"
      ],
      "description": "Show type (e.g., Scripted, Reality)"
    },
    "language": {
      "type": [
        "string",
        "null"
      ],
      "description": "Primary language"
    },
    "genres": {
      "type": "array",
      "description": "Genre tags",
      "items": {
        "type": "string"
      }
    },
    "status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Show status (Running, Ended)"
    },
    "runtime_min": {
      "type": [
        "number",
        "null"
      ],
      "description": "Episode runtime in minutes"
    },
    "premiered": {
      "type": [
        "string",
        "null"
      ],
      "description": "Premiere date (YYYY-MM-DD)"
    },
    "ended": {
      "type": [
        "string",
        "null"
      ],
      "description": "End date (YYYY-MM-DD) or null"
    },
    "official_site": {
      "type": [
        "string",
        "null"
      ],
      "description": "Official website URL"
    },
    "rating": {
      "type": [
        "number",
        "null"
      ],
      "description": "Average rating (0-10)"
    },
    "network": {
      "type": [
        "string",
        "null"
      ],
      "description": "Network or web channel name"
    },
    "network_country": {
      "type": [
        "string",
        "null"
      ],
      "description": "2-letter country code"
    },
    "imdb_id": {
      "type": [
        "string",
        "null"
      ],
      "description": "IMDb ID"
    },
    "tvdb_id": {
      "type": [
        "number",
        "null"
      ],
      "description": "TheTVDB ID"
    },
    "image": {
      "type": [
        "string",
        "null"
      ],
      "description": "Show poster image URL"
    },
    "summary": {
      "type": [
        "string",
        "null"
      ],
      "description": "HTML-stripped show summary"
    },
    "tvmaze_url": {
      "type": [
        "string",
        "null"
      ],
      "description": "TVMaze show page URL"
    },
    "episodes": {
      "type": "array",
      "description": "Full episode list (if embed_episodes=true)",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": [
              "number",
              "null"
            ],
            "description": "TVMaze episode ID"
          },
          "season": {
            "type": [
              "number",
              "null"
            ],
            "description": "Season number"
          },
          "number": {
            "type": [
              "number",
              "null"
            ],
            "description": "Episode number in season"
          },
          "name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Episode title"
          },
          "type": {
            "type": [
              "string",
              "null"
            ],
            "description": "Episode type"
          },
          "airdate": {
            "type": [
              "string",
              "null"
            ],
            "description": "Air date (YYYY-MM-DD)"
          },
          "airtime": {
            "type": [
              "string",
              "null"
            ],
            "description": "Air time (HH:MM)"
          },
          "runtime_min": {
            "type": [
              "number",
              "null"
            ],
            "description": "Episode runtime in minutes"
          },
          "rating": {
            "type": [
              "number",
              "null"
            ],
            "description": "Episode rating"
          },
          "summary": {
            "type": [
              "string",
              "null"
            ],
            "description": "HTML-stripped episode summary"
          },
          "tvmaze_url": {
            "type": [
              "string",
              "null"
            ],
            "description": "Episode page URL"
          }
        }
      }
    },
    "cast": {
      "type": "array",
      "description": "Cast list (if embed_cast=true)",
      "items": {
        "type": "object",
        "properties": {
          "person_id": {
            "type": [
              "number",
              "null"
            ],
            "description": "Actor ID"
          },
          "person_name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Actor name"
          },
          "character_id": {
            "type": [
              "number",
              "null"
            ],
            "description": "Character ID"
          },
          "character_name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Character name"
          },
          "image": {
            "type": [
              "string",
              "null"
            ],
            "description": "Actor photo URL"
          }
        }
      }
    },
    "seasons": {
      "type": "array",
      "description": "Season metadata (if embed_seasons=true)",
      "items": {
        "type": "object",
        "properties": {
          "id": {
            "type": [
              "number",
              "null"
            ],
            "description": "Season ID"
          },
          "number": {
            "type": [
              "number",
              "null"
            ],
            "description": "Season number"
          },
          "episode_order": {
            "type": [
              "number",
              "null"
            ],
            "description": "Episode count in season"
          },
          "premiere_date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Season premiere date"
          },
          "end_date": {
            "type": [
              "string",
              "null"
            ],
            "description": "Season end date"
          },
          "network": {
            "type": [
              "string",
              "null"
            ],
            "description": "Network name"
          },
          "summary": {
            "type": [
              "string",
              "null"
            ],
            "description": "HTML-stripped season summary"
          }
        }
      }
    }
  },
  "required": [
    "id",
    "name",
    "genres"
  ]
}

Connect

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

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

See Getting Started for client-specific install steps.

Regenerated from source · build June 26, 2026