get_label

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

Fetch a Discogs record label profile by label_id. Returns label name, profile, contact info, URLs, parent label, sublabels, and images.

Parameters

NameTypeRequiredDescription
label_idnumberyesDiscogs label ID

Example call

Arguments

{
  "label_id": 1
}

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_label","arguments":{"label_id":1}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('get_label', {
  "label_id": 1
});

Response shape

Full JSON Schema
{
  "type": "object",
  "description": "Label profile 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.

Regenerated from source · build July 6, 2026