iTunes Search
liveMediaEntertainmentApple iTunes Store catalog search — music, movies, podcasts, audiobooks, ebooks, apps. Keyless.
5tools
0msauth
free tier50 calls/day
Tools
searchrequired: termSearch iTunes catalog.
Parameters
NameTypeDescription
termreqstring—mediaoptstring—entityoptstring—attributeoptstring—countryoptstring—limitoptnumber—langoptstring—explicitoptstring—Try it
Response
lookupExact-ID lookup.
Parameters
NameTypeDescription
idoptstring—bundle_idoptstring—isbnoptstring—upcoptstring—amg_artist_idoptstring—amg_album_idoptstring—countryoptstring—entityoptstring—limitoptnumber—Try it
Response
top_moviesTop-grossing movies chart.
Parameters
NameTypeDescription
countryoptstring—limitoptnumber—Try it
Response
top_podcastsTop podcasts chart.
Parameters
NameTypeDescription
countryoptstring—limitoptnumber—Try it
Response
top_booksTop ebooks chart.
Parameters
NameTypeDescription
countryoptstring—limitoptnumber—free_or_paidoptstring—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/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");