search_album

Pack: theaudiodb · Endpoint: https://gateway.pipeworx.io/theaudiodb/mcp

Search TheAudioDB for albums by artist (optionally narrowed to a specific album title). Returns album id, title, artist, release year, genre, album cover artwork URL, and English description. Omit the album arg to list all albums for the artist.

Parameters

NameTypeRequiredDescription
artiststringyesArtist or band name, e.g. “Coldplay”.
albumstringnoOptional album title to narrow the search, e.g. “Parachutes”.

Example call

Arguments

{
  "artist": "Coldplay"
}

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":"search_album","arguments":{"artist":"Coldplay"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('search_album', {
  "artist": "Coldplay"
});

More examples

{
  "artist": "Coldplay",
  "album": "Parachutes"
}

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.

Regenerated from source · build September 7, 2026