Trakt

live MediaTV & Film

TV / 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

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
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
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
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

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");