genres_movie
Pack: tmdb · Endpoint: https://gateway.pipeworx.io/tmdb/mcp
TMDb movie genre directory: Action, Comedy, Drama, Horror, Documentary, etc. with genre IDs. Use to filter discover_movie 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_movie","arguments":{"language":"en-US"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('genres_movie', {
"language": "en-US"
});
Response shape
| Field | Type | Description |
|---|---|---|
genres | array | Movie genres |
Full JSON Schema
{
"type": "object",
"properties": {
"genres": {
"type": "array",
"description": "Movie 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.