imdb_top_rated
Pack: imdb · Endpoint: https://gateway.pipeworx.io/imdb/mcp
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).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
title_type | string | no | ${TITLE_TYPES.join(’ | ’)} (default “movie”) |
genre | string | no | Genre filter (e.g. “Horror”, “Documentary”) |
year_from | number | no | Minimum start year |
year_to | number | no | Maximum start year |
min_votes | number | no | Minimum num_votes (default 10000) |
limit | number | no | 1-100 (default 25) |
Example call
curl -X POST https://gateway.pipeworx.io/imdb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"imdb_top_rated","arguments":{}}}'
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"imdb": {
"url": "https://gateway.pipeworx.io/imdb/mcp"
}
}
}
See Getting Started for client-specific install steps.