Movies & TV

live Film/TVEntertainment

Search movies via iTunes and TV shows via TVmaze — details, episodes, and schedules

4 tools
0ms auth
free tier 50 calls/day

Tools

search_movies

Search for movies by title or keyword. Returns title, director, release date, genre, description, and artwork.

No parameters required.

Try it
search_tv_shows

Search for TV shows by name. Returns show name, genres, premiere/end dates, rating, summary, and images.

No parameters required.

Try it
get_tv_show

Get complete TV show details including episodes, air dates, and ratings. Requires show ID from search_tv_shows.

No parameters required.

Try it
get_tv_schedule

Check what's broadcasting on a specific date and country (e.g., 'US', 'GB'). Returns shows, times, and channels.

No parameters required.

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/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":{}}}'

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", {});
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");