Trakt
live MediaTV & FilmTV / movie metadata + trending and popular signals from Trakt.tv.
7 tools
0ms auth
free tier 50 calls/day
Authentication
Platform credentials handled by Pipeworx. Or BYO a Trakt client_id (read-only endpoints).
Config with credentials
{
"mcpServers": {
"pipeworx-trakt": {
"command": "npx",
"args": [
"-y",
"mcp-remote@latest",
"https://gateway.pipeworx.io/trakt/mcp?_apiKey=your_client_id"
]
}
}
} Tools
search
required: query Search Trakt across movies / shows / episodes / people / lists.
Parameters
Name Type Description
query req string Search term type opt string movie | show | episode | person | list (comma-sep ok) fields opt string Restrict matched fields years opt string Year or range (e.g. "1999-2005") genres opt string Genre slug filter countries opt string Country code filter languages opt string Language code filter page opt number 1-based page limit opt number 1-100 (default 10) Try it
Response
get_movie
required: id Movie record. Use extended=full for plot/runtime/genres.
Parameters
Name Type Description
id req string trakt ID, slug, or IMDB/TMDB ID extended opt string full | metadata | images Try it
Response
get_show
required: id Show record.
Parameters
Name Type Description
id req string trakt ID, slug, or IMDB/TMDB ID extended opt string full | metadata | images Try it
Response
list_seasons
required: show_id Seasons + episode counts for a show.
Parameters
Name Type Description
show_id req string trakt ID or slug extended opt string full | episodes | full,episodes Try it
Response
get_episode
required: show_id, season, episode Single episode by show + season + episode.
Parameters
Name Type Description
show_id req string trakt show ID/slug season req number Season number episode req number Episode number extended opt string full | images Try it
Response
trending
required: type Currently-trending movies or shows.
Parameters
Name Type Description
type req string movies | shows limit opt number 1-100 (default 10) page opt number 1-based page Try it
Response
popular
required: type All-time popular movies or shows.
Parameters
Name Type Description
type req string movies | shows limit opt number 1-100 (default 10) page opt number 1-based page Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/trakt/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
curl -X POST https://gateway.pipeworx.io/trakt/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search","arguments":{"query": "hello"}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search", {"query":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("tv / movie metadata + trending and popular signals from trakt");