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
| Name | Type | Required | Description |
|---|---|---|---|
tv_id | number | yes | |
season_number | number | yes | |
language | string | no |
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
| Field | Type | Description |
|---|---|---|
id | number | Season ID |
season_number | number | Season number |
air_date | string | Air date |
episodes | array | Episodes 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.