iTunes Search

liveMediaEntertainment

Apple iTunes Store catalog search — music, movies, podcasts, audiobooks, ebooks, apps. Keyless.

5tools
0msauth
free tier50 calls/day

Tools

lookup

Exact-ID lookup.

Parameters
NameTypeDescription
idoptstring—
bundle_idoptstring—
isbnoptstring—
upcoptstring—
amg_artist_idoptstring—
amg_album_idoptstring—
countryoptstring—
entityoptstring—
limitoptnumber—
▶Try it
top_movies

Top-grossing movies chart.

Parameters
NameTypeDescription
countryoptstring—
limitoptnumber—
▶Try it
top_podcasts

Top podcasts chart.

Parameters
NameTypeDescription
countryoptstring—
limitoptnumber—
▶Try it
top_books

Top ebooks chart.

Parameters
NameTypeDescription
countryoptstring—
limitoptnumber—
free_or_paidoptstring—
▶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/itunes-search/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/itunes-search/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search","arguments":{"term": "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", {"term":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("apple itunes store catalog search — music, movies, podcasts, audiobooks, ebooks, apps");