TVMaze
liveFilm/TVEntertainmentMediaTV show metadata, episode schedules, cast. Complements the movies pack with TV-specific coverage.
5tools
0msauth
free tier50 calls/day
Tools
search_showsrequired: queryText search across TV shows.
Parameters
NameTypeDescription
queryreqstringShow nameTry it
Response
get_showrequired: show_idFull show record with optional embeds (episodes / cast / seasons).
Parameters
NameTypeDescription
show_idreqnumberTVMaze show IDembed_episodesoptbooleanInclude episodesembed_castoptbooleanInclude castembed_seasonsoptbooleanInclude seasonsTry it
Response
list_episodesrequired: show_idAll episodes of a show.
Parameters
NameTypeDescription
show_idreqnumberTVMaze show IDspecialsoptbooleanInclude specialsTry it
Response
get_scheduleWhat's airing on a country/day.
Parameters
NameTypeDescription
countryoptstring2-letter country code (default US)dateoptstringYYYY-MM-DD (default today)Try it
Response
search_peoplerequired: queryActors / people search.
Parameters
NameTypeDescription
queryreqstringPerson nameTry 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/tvmaze/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/tvmaze/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_shows","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_shows", {"query":"example"});ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("tv show metadata, episode schedules, cast");Related packs
Other Pipeworx packs in the same categories (Film/TV, Entertainment, Media):