get_release

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

Get release details: full track listing, credits, media formats, and metadata. Requires release ID from search_releases.

Parameters

NameTypeRequiredDescription
idstringyesMusicBrainz release ID (UUID).

Example call

Arguments

{
  "id": "0cfb11b7-90b9-46d4-8910-e1d39f7f5fa0"
}

curl

curl -X POST https://gateway.pipeworx.io/musicbrainz/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_release","arguments":{"id":"0cfb11b7-90b9-46d4-8910-e1d39f7f5fa0"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_release', {
  "id": "0cfb11b7-90b9-46d4-8910-e1d39f7f5fa0"
});

Response shape

Always returns: id, title, artist_credit, tracks

FieldTypeDescription
idstringMusicBrainz release ID
titlestringRelease title
datestring | nullRelease date (YYYY-MM-DD)
statusstring | nullRelease status
artist_creditarrayArtist credits for release
tracksarrayList of tracks on release
Full JSON Schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "MusicBrainz release ID"
    },
    "title": {
      "type": "string",
      "description": "Release title"
    },
    "date": {
      "type": [
        "string",
        "null"
      ],
      "description": "Release date (YYYY-MM-DD)"
    },
    "status": {
      "type": [
        "string",
        "null"
      ],
      "description": "Release status"
    },
    "artist_credit": {
      "type": "array",
      "description": "Artist credits for release",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": [
              "string",
              "null"
            ],
            "description": "Artist name as credited"
          },
          "artist_id": {
            "type": [
              "string",
              "null"
            ],
            "description": "MusicBrainz artist ID"
          }
        }
      }
    },
    "tracks": {
      "type": "array",
      "description": "List of tracks on release",
      "items": {
        "type": "object",
        "properties": {
          "position": {
            "type": "number",
            "description": "Track position on media"
          },
          "number": {
            "type": "string",
            "description": "Track number"
          },
          "title": {
            "type": "string",
            "description": "Track title"
          },
          "length_ms": {
            "type": [
              "number",
              "null"
            ],
            "description": "Track duration in milliseconds"
          }
        },
        "required": [
          "position",
          "number",
          "title"
        ]
      }
    }
  },
  "required": [
    "id",
    "title",
    "artist_credit",
    "tracks"
  ]
}

Connect

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

{
  "mcpServers": {
    "musicbrainz": {
      "url": "https://gateway.pipeworx.io/musicbrainz/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build May 9, 2026