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
| Name | Type | Required | Description |
|---|---|---|---|
mbid | string | yes |
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
| Field | Type | Description |
|---|---|---|
mbid | string | Music Brainz ID |
name | string | Artist name |
sortName | string | Sort name |
disambiguation | string | Disambiguation info |
url | string | setlist.fm URL |
image | string | Image URL |
tmid | number | Ticketmaster 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.