iTunes Search

live MediaCatalog

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

5 tools
0ms auth
free tier 50 calls/day

Tools

lookup

Exact-ID lookup.

Parameters
Name Type Description
id opt string
bundle_id opt string
isbn opt string
upc opt string
amg_artist_id opt string
amg_album_id opt string
country opt string
entity opt string
limit opt number
Try it
top_movies

Top-grossing movies chart.

Parameters
Name Type Description
country opt string
limit opt number
Try it
top_podcasts

Top podcasts chart.

Parameters
Name Type Description
country opt string
limit opt number
Try it
top_books

Top ebooks chart.

Parameters
Name Type Description
country opt string
limit opt number
free_or_paid opt string
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");