OMDb
liveFilm/TVEntertainmentIMDB-derived movie / TV / episode metadata + ratings. BYO key (free 1k/day).
3tools
0msauth
free tier50 calls/day
Authentication
BYO only — free tier is 1k lookups/day. Pass _apiKey on the gateway URL.
Config with credentials
{
"mcpServers": {
"pipeworx-omdb": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/omdb/mcp?_apiKey=your_omdb_key"
]
}
}
}Tools
search_titlesrequired: queryKeyword search.
Parameters
NameTypeDescription
queryreqstringTitle keywordyearoptnumberRelease yeartypeoptstringmovie | series | episodepageoptnumber1-100Try it
Response
get_by_titlerequired: titleSingle title by exact name.
Parameters
NameTypeDescription
titlereqstringExact titleyearoptnumberRelease yeartypeoptstringmovie | series | episodeplotoptstringshort | fullTry it
Response
get_by_imdb_idrequired: imdb_idSingle title by IMDB ID.
Parameters
NameTypeDescription
imdb_idreqstringIMDB ID (tt...)plotoptstringshort | fullTry 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/omdb/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/omdb/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_titles","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_titles", {"query":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("imdb-derived movie / tv / episode metadata + ratings");