genres_tv
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
TMDb TV genre directory: Action & Adventure, Drama, Reality, Documentary, Animation, etc. with genre IDs. Use to filter discover_tv by genre.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
language | string | no |
Example call
Arguments
{
"language": "en-US"
}
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":"genres_tv","arguments":{"language":"en-US"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('genres_tv', {
"language": "en-US"
});
Response shape
| Field | Type | Description |
|---|---|---|
genres | array | TV genres |
Full JSON Schema
{
"type": "object",
"properties": {
"genres": {
"type": "array",
"description": "TV genres",
"items": {
"type": "object",
"properties": {
"id": {
"type": "number",
"description": "Genre ID"
},
"name": {
"type": "string",
"description": "Genre 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.