/ Annuaire / Playground / Discogs MCP
● Communauté cswkim ⚡ Instantané

Discogs MCP

par cswkim · cswkim/discogs-mcp-server

Discogs music database — search releases, manage collection, lookup pricing.

Discogs is the world's largest music database (records, CDs, labels). This MCP server lets Claude search releases, look up market prices, and manage your personal collection/wantlist — useful for collectors, music journalists, and DJs cataloging libraries.

Pourquoi l'utiliser

Fonctionnalités clés

Démo en direct

Aperçu en pratique

discogs-mcp.replay ▶ prêt
0/0

Installer

Choisissez votre client

~/Library/Application Support/Claude/claude_desktop_config.json  · Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "discogs-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "discogs-mcp-server"
      ]
    }
  }
}

Ouvrez Claude Desktop → Settings → Developer → Edit Config. Redémarrez après avoir enregistré.

~/.cursor/mcp.json · .cursor/mcp.json
{
  "mcpServers": {
    "discogs-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "discogs-mcp-server"
      ]
    }
  }
}

Cursor utilise le même schéma mcpServers que Claude Desktop. La config projet l'emporte sur la globale.

VS Code → Cline → MCP Servers → Edit
{
  "mcpServers": {
    "discogs-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "discogs-mcp-server"
      ]
    }
  }
}

Cliquez sur l'icône MCP Servers dans la barre latérale Cline, puis "Edit Configuration".

~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "discogs-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "discogs-mcp-server"
      ]
    }
  }
}

Même format que Claude Desktop. Redémarrez Windsurf pour appliquer.

~/.continue/config.json
{
  "mcpServers": [
    {
      "name": "discogs-mcp",
      "command": "npx",
      "args": [
        "-y",
        "discogs-mcp-server"
      ]
    }
  ]
}

Continue utilise un tableau d'objets serveur plutôt qu'une map.

~/.config/zed/settings.json
{
  "context_servers": {
    "discogs-mcp": {
      "command": {
        "path": "npx",
        "args": [
          "-y",
          "discogs-mcp-server"
        ]
      }
    }
  }
}

Ajoutez dans context_servers. Zed recharge à chaud à la sauvegarde.

claude mcp add discogs-mcp -- npx -y discogs-mcp-server

Une seule ligne. Vérifiez avec claude mcp list. Supprimez avec claude mcp remove.

Cas d'usage

Usages concrets : Discogs MCP

Estimate the resale value of your vinyl collection

👤 Record collectors ⏱ ~15 min intermediate

Quand l'utiliser : You're thinking of selling and want a realistic price range.

Prérequis
  • Server/skill installed and authenticated — See repo README
Déroulement
  1. Pull your collection
    List my Discogs collection with title, year, and median market price.✓ Copié
    → Table with median prices
  2. Find the top value items
    Sort by median price descending. Show the top 10 with VG+/NM condition pricing.✓ Copié
    → Sorted list with grade-specific pricing

Résultat : A realistic resale floor and ceiling for your collection.

Pièges
  • Price suggestions are aggregated — Price suggestions are aggregated — actual sale price depends on condition grading. Always cross-check with recent sold listings.
Combiner avec : fetch

Combinaisons

Associez-le à d'autres MCPs pour un effet X10

discogs-mcp + fetch

Pair with fetch for complementary capabilities

Use this server together with fetch to complete a multi-step task.✓ Copié

Outils

Ce que ce MCP expose

OutilEntréesQuand appelerCoût
search_releases query, artist, year Find releases matching criteria 1 API call
get_release release_id Drill into tracklist, credits, formats 1 API call
price_suggestions release_id Check fair market value 1 API call

Coût et limites

Coût d'exécution

Quota d'API
See provider docs for rate limits
Tokens par appel
Varies by tool
Monétaire
See repo README for pricing details
Astuce
Cache tool results and avoid repeated identical calls.

Sécurité

Permissions, secrets, portée

Stockage des identifiants : Use environment variables; never commit secrets
Sortie de données : Tool calls go to the provider's API as documented

Dépannage

Erreurs courantes et correctifs

401 Unauthorized

Generate a Discogs personal access token at discogs.com/settings/developers and set DISCOGS_TOKEN.

Vérifier : search_releases with a known artist works
rate limited (60/min)

Discogs caps to 60 req/min authenticated. Add small delays between batch lookups.

Vérifier : Wait 60s and retry

Alternatives

Discogs MCP vs autres

AlternativeQuand l'utiliserCompromis
MusicBrainz MCPYou want CC-BY metadata without OAuthNo pricing or collection features

Plus

Ressources

📖 Lire le README officiel sur GitHub

🐙 Voir les issues ouvertes

🔍 Parcourir les 400+ serveurs MCP et Skills