tv
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
Fetch full TMDB TV show details by tv_id. Returns name, overview, first/last air date, number of seasons and episodes, genres, networks, status, and vote average.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
tv_id | number | yes | |
append_to_response | string | no | |
language | string | no |
Example call
Arguments
{
"tv_id": 1396
}
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","arguments":{"tv_id":1396}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('tv', {
"tv_id": 1396
});
More examples
{
"tv_id": 1399,
"append_to_response": "credits"
}
Response shape
| Field | Type | Description |
|---|---|---|
id | number | TV show ID |
name | string | TV show name |
first_air_date | string | First air date |
last_air_date | string | Last air date |
number_of_seasons | number | Number of seasons |
number_of_episodes | number | Number of episodes |
vote_average | number | Average vote rating |
overview | string | Show overview |
genres | array | Genres |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "TV show ID"
},
"name": {
"type": "string",
"description": "TV show name"
},
"first_air_date": {
"type": "string",
"description": "First air date"
},
"last_air_date": {
"type": "string",
"description": "Last air date"
},
"number_of_seasons": {
"type": "number",
"description": "Number of seasons"
},
"number_of_episodes": {
"type": "number",
"description": "Number of episodes"
},
"vote_average": {
"type": "number",
"description": "Average vote rating"
},
"overview": {
"type": "string",
"description": "Show overview"
},
"genres": {
"type": "array",
"description": "Genres",
"items": {
"type": "object"
}
}
}
}
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.