MCP server exposing 4 tools for imdb.
This URL is a JSON-RPC 2.0 endpoint over HTTP. Issue POST requests with a JSON-RPC body. Browsers and search crawlers land here on GET.
POST https://gateway.pipeworx.io/imdb/mcp
Content-Type: application/json
{"jsonrpc":"2.0","id":1,"method":"tools/list"}
imdb_search — Search IMDB titles by primary_title (case-insensitive substring). Joins ratings inline so each hit includes average_rating + num_votes. Optionally filter by title_type, year range, or genre. Returns up to `limit` matches sorted by num_votes desc (popular first).imdb_get_title — Full detail for one IMDB title by tconst id (e.g. "tt0111161"). Returns title, year, runtime, genres, plus rating (average + votes) and crew (directors/writers as nconst arrays).imdb_top_rated — Highest-rated titles, filterable by title_type, genre, year range, and min vote count. Use min_votes to filter out obscure titles with inflated averages (e.g. min_votes=10000 for IMDB-Top-250-style lists).imdb_episodes — List every episode for a TV series, in season/episode order. Returns parent series detail plus episode list with title and rating per episode.Code samples (curl / TypeScript / one-click client install), schemas, and the live playground are on the pack page:
https://pipeworx.io/packs/imdb/
Pipeworx is an open MCP gateway connecting AI agents to live data. pipeworx.io