Movies & TV
live EntertainmentSearch movies via iTunes and TV shows via TVmaze — details, episodes, and schedules
4 tools
0ms auth
free tier 50 calls/day
Tools
search_movies
required: query Search for movies via iTunes
Parameters
Name Type Description
query req string Movie title or keyword limit opt number Results to return (1-25, default 10) Try it
Response
search_tv_shows
required: query Search TV shows via TVmaze
Parameters
Name Type Description
query req string TV show name or keyword Try it
Response
get_tv_show
required: id Get TV show details with episodes by TVmaze ID
Parameters
Name Type Description
id req number TVmaze show ID Try it
Response
get_tv_schedule Get today's TV schedule by country
Parameters
Name Type Description
country opt string ISO country code (default US) date opt string Date in YYYY-MM-DD (default today) Try 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/movies/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/movies/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_movies","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_movies", {"query":"example"}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("search movies via itunes and tv shows via tvmaze — details, episodes, and schedules");