IMDB

liveFilm/TVEntertainment

IMDB title/ratings/crew/episode data from the public non-commercial bulk dumps, ingested daily. Search, top-rated lookups, episode lists. No auth required.

4tools
0msauth
free tier50 calls/day

Tools

imdb_get_titlerequired: imdb_id

Full detail for one IMDB title by tconst id. Returns title, year, runtime, genres, rating, and crew nconst arrays.

Parameters
NameTypeDescription
imdb_idreqstringtconst, e.g. "tt0111161"
Try it
imdb_top_rated

Highest-rated titles, filterable by title_type, genre, year range, and min vote count.

Parameters
NameTypeDescription
title_typeoptstringmovie | tvSeries | tvMiniSeries (default movie)
genreoptstringGenre filter
year_fromoptnumberMinimum start year
year_tooptnumberMaximum start year
min_votesoptnumberMinimum num_votes (default 10000)
limitoptnumber1-100 (default 25)
Try it
imdb_episodesrequired: series_id

List episodes for a TV series in season/episode order with per-episode ratings.

Parameters
NameTypeDescription
series_idreqstringSeries tconst, e.g. "tt0903747"
seasonoptnumberOptional: filter to one season
limitoptnumberMax episodes (default 500, max 2000)
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/imdb/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/imdb/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"imdb_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("imdb_search", {"query":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("imdb title/ratings/crew/episode data from the public non-commercial bulk dumps, ingested daily");