artist

Pack: setlist-fm · Endpoint: https://gateway.pipeworx.io/setlist-fm/mcp

Fetch a setlist.fm artist record by MusicBrainz ID (mbid). Returns artist name, MBID, Ticketmaster ID, sort name, and disambiguation info.

Parameters

NameTypeRequiredDescription
mbidstringyes

Example call

Arguments

{
  "mbid": "79239b12-edad-4280-a524-8344d868a69e"
}

curl

curl -X POST https://gateway.pipeworx.io/setlist-fm/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"artist","arguments":{"mbid":"79239b12-edad-4280-a524-8344d868a69e"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('artist', {
  "mbid": "79239b12-edad-4280-a524-8344d868a69e"
});

Response shape

FieldTypeDescription
mbidstringMusic Brainz ID
namestringArtist name
sortNamestringSort name
disambiguationstringDisambiguation info
urlstringsetlist.fm URL
imagestringImage URL
tmidnumberTicketmaster ID
Full JSON Schema
{
  "type": "object",
  "properties": {
    "mbid": {
      "type": "string",
      "description": "Music Brainz ID"
    },
    "name": {
      "type": "string",
      "description": "Artist name"
    },
    "sortName": {
      "type": "string",
      "description": "Sort name"
    },
    "disambiguation": {
      "type": "string",
      "description": "Disambiguation info"
    },
    "url": {
      "type": "string",
      "description": "setlist.fm URL"
    },
    "image": {
      "type": "string",
      "description": "Image URL"
    },
    "tmid": {
      "type": "number",
      "description": "Ticketmaster ID"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "setlist-fm": {
      "url": "https://gateway.pipeworx.io/setlist-fm/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026