get_album_tracks
Pack: theaudiodb · Endpoint: https://gateway.pipeworx.io/theaudiodb/mcp
List all tracks on a TheAudioDB album by its idAlbum (as returned by search_album). Returns each track id, title, track number, duration in milliseconds, genre, and music-video URL when available.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
album_id | string | yes | TheAudioDB idAlbum, e.g. “2109615”. |
Example call
Arguments
{
"album_id": "2109615"
}
curl
curl -X POST https://gateway.pipeworx.io/theaudiodb/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_album_tracks","arguments":{"album_id":"2109615"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_album_tracks', {
"album_id": "2109615"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"theaudiodb": {
"url": "https://gateway.pipeworx.io/theaudiodb/mcp"
}
}
}
See Getting Started for client-specific install steps.