get_list
Retrieve a specific list from Discogs using its unique ID to manage or view music catalog data efficiently within the Discogs MCP Server.
Instructions
Get a list by ID
Input Schema
Name | Required | Description | Default |
---|---|---|---|
list_id | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"list_id": {
"type": "number"
}
},
"required": [
"list_id"
],
"type": "object"
}