> ## Documentation Index
> Fetch the complete documentation index at: https://docs.rewind.rest/llms.txt
> Use this file to discover all available pages before exploring further.

# Collecting

> MCP tools for your Discogs vinyl and physical media collections.

## `get_collecting_stats`

Get overall collection statistics including total items, format breakdown (vinyl, CD, cassette), unique artists, genre data, and year range.

<ParamField path="date" type="string">
  Optional: filter to a specific date (YYYY-MM-DD)
</ParamField>

<ParamField path="from" type="string">
  Optional: start of date range (ISO 8601)
</ParamField>

<ParamField path="to" type="string">
  Optional: end of date range (ISO 8601)
</ParamField>

## `get_physical_media`

Browse the physical media collection (Blu-ray, 4K UHD, HD DVD).

<ParamField path="include_images" type="boolean">
  Include artwork/poster image content blocks in the response. Default true. Set false to keep responses small. Defaults to `true`.
</ParamField>

<ParamField path="limit" type="number">
  Number of items to return Defaults to `10`.
</ParamField>

<ParamField path="media_type" type="string">
  Optional: filter by format (bluray, uhd\_bluray, hddvd) One of: `bluray`, `uhd_bluray`, `hddvd`.
</ParamField>

<ParamField path="page" type="number">
  Page number for pagination Defaults to `1`.
</ParamField>

<ParamField path="query" type="string">
  Optional: search by title (e.g. 'Princess Bride', 'Kubrick')
</ParamField>

## `get_physical_media_stats`

Get statistics for the physical media collection including total items and breakdown by format (Blu-ray, 4K UHD, HD DVD).

This tool takes no parameters.

## `get_vinyl_collection`

Browse the vinyl record collection from Discogs.

<ParamField path="artist" type="string">
  Optional: filter by artist name
</ParamField>

<ParamField path="date" type="string">
  Optional: filter to a specific date (YYYY-MM-DD)
</ParamField>

<ParamField path="format" type="string">
  Optional: filter by format (e.g. 'Vinyl', 'CD', 'Cassette')
</ParamField>

<ParamField path="from" type="string">
  Optional: start of date range (ISO 8601)
</ParamField>

<ParamField path="genre" type="string">
  Optional: filter by genre
</ParamField>

<ParamField path="include_images" type="boolean">
  Include artwork/poster image content blocks in the response. Default true. Set false to keep responses small. Defaults to `true`.
</ParamField>

<ParamField path="limit" type="number">
  Number of records to return Defaults to `10`.
</ParamField>

<ParamField path="order" type="string">
  Optional: sort order (default: desc) One of: `asc`, `desc`.
</ParamField>

<ParamField path="page" type="number">
  Page number for pagination Defaults to `1`.
</ParamField>

<ParamField path="query" type="string">
  Optional: search by artist or album title (e.g. 'Beastie Boys', 'Dark Side')
</ParamField>

<ParamField path="sort" type="string">
  Optional: sort field (default: date\_added). Options: date\_added, title, year, artist
</ParamField>

<ParamField path="to" type="string">
  Optional: end of date range (ISO 8601)
</ParamField>
