get_master
Pack: discogs · Endpoint: https://gateway.pipeworx.io/discogs/mcp
Fetch master release detail by Discogs master_id — the canonical work record spanning all pressings/editions. Returns title, main release, artists, genres, styles, year, tracklist, and Discogs URL.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
master_id | number | yes | Discogs master ID |
Example call
Arguments
{
"master_id": 11157
}
curl
curl -X POST https://gateway.pipeworx.io/discogs/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"get_master","arguments":{"master_id":11157}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('get_master', {
"master_id": 11157
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Master release information from Discogs API"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"discogs": {
"url": "https://gateway.pipeworx.io/discogs/mcp"
}
}
}
See Getting Started for client-specific install steps.