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
| Name | Type | Required | Description |
|---|---|---|---|
id | number | yes | TVmaze 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
| Field | Type | Description |
|---|---|---|
id | number | TVmaze show ID |
name | string | Show name |
type | string | null | Show type |
language | string | null | Primary language |
genres | array | List of genres |
status | string | null | Current status |
premiered | string | null | Premiere date |
ended | string | null | End date |
rating | number | null | Average rating |
network | string | null | Network name |
summary | string | null | Show summary |
url | string | null | TVmaze show URL |
image | string | null | Poster image URL |
episode_count | number | Total number of episodes |
episodes | array |
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.