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
| Name | Type | Required | Description |
|---|---|---|---|
id | string | yes | MusicBrainz 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
| Field | Type | Description |
|---|---|---|
id | string | MusicBrainz release ID |
title | string | Release title |
date | string | null | Release date (YYYY-MM-DD) |
status | string | null | Release status |
artist_credit | array | Artist credits for release |
tracks | array | List 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.