trending
Pack: trakt · Endpoint: https://gateway.pipeworx.io/trakt/mcp
“What’s trending on TV / movies right now” / “popular shows this week” / “what people are watching” — currently-trending movies or shows on Trakt (ranked by active watchers). Pass type=“movies” or “shows”. Use for “what should I watch” recommendations.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
type | string | yes | movies | shows |
limit | number | no | 1-100 (default 10) |
page | number | no | 1-based page |
Example call
Arguments
{
"type": "movies"
}
curl
curl -X POST https://gateway.pipeworx.io/trakt/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"trending","arguments":{"type":"movies"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('trending', {
"type": "movies"
});
More examples
{
"type": "shows",
"limit": 20
}
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | Array of trending movies or shows |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"description": "Array of trending movies or shows",
"items": {
"type": "object",
"properties": {
"watchers": {
"type": "number",
"description": "Current number of people watching"
},
"movie": {
"type": "object",
"description": "Movie object if type is movies"
},
"show": {
"type": "object",
"description": "Show object if type is shows"
}
}
}
},
"count": {
"type": "integer",
"description": "Number of items returned."
}
},
"required": [
"items",
"count"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"trakt": {
"url": "https://gateway.pipeworx.io/trakt/mcp"
}
}
}
See Getting Started for client-specific install steps.