genres
Pack: watchmode · Endpoint: https://gateway.pipeworx.io/watchmode/mcp
Watchmode movie + TV genre directory: Action, Comedy, Drama, Sci-Fi, etc. Returns genre ID + name + TMDb ID. Use to filter list_titles by genre.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/watchmode/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"genres","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('genres', {});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Available genres"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"watchmode": {
"url": "https://gateway.pipeworx.io/watchmode/mcp"
}
}
}
See Getting Started for client-specific install steps.