popular
Pack: trakt · Endpoint: https://gateway.pipeworx.io/trakt/mcp
“All-time popular movies / shows” / “most-watched [type] ever” / “classic [movies / TV]” — all-time popular movies or shows on Trakt (by lifetime watch counts, not current trending). Use for “best of all time” lists.
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",
"limit": 10
}
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":"popular","arguments":{"type":"movies","limit":10}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('popular', {
"type": "movies",
"limit": 10
});
More examples
{
"type": "shows",
"page": 2
}
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | Array of all-time popular movies or shows |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"description": "Array of all-time popular movies or shows",
"items": {
"type": "object",
"properties": {
"like_count": {
"type": "number",
"description": "Like count"
},
"list_count": {
"type": "number",
"description": "Count in lists"
},
"comment_count": {
"type": "number",
"description": "Comment count"
},
"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.