get_artist

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

Look up a single TheAudioDB artist by its idArtist (as returned by search_artist). Returns the same metadata fields as search_artist: genre, style, mood, formed year, country, website, biography, and thumbnail URL.

Parameters

NameTypeRequiredDescription
idstringyesTheAudioDB idArtist, e.g. “111239”.

Example call

Arguments

{
  "id": "111239"
}

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_artist","arguments":{"id":"111239"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_artist', {
  "id": "111239"
});

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