/ Directorio / Playground / Discogs MCP
● Comunidad cswkim ⚡ Instantáneo

Discogs MCP

por 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.

Por qué usarlo

Características clave

Demo en vivo

Cómo se ve en la práctica

discogs-mcp.replay ▶ listo
0/0

Instalar

Elige tu cliente

~/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"
      ]
    }
  }
}

Abre Claude Desktop → Settings → Developer → Edit Config. Reinicia después de guardar.

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

Cursor usa el mismo esquema mcpServers que Claude Desktop. La configuración del proyecto prevalece sobre la global.

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

Haz clic en el icono MCP Servers de la barra lateral de Cline y luego en "Edit Configuration".

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

Mismo formato que Claude Desktop. Reinicia Windsurf para aplicar.

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

Continue usa un array de objetos de servidor en lugar de un mapa.

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

Añádelo a context_servers. Zed recarga en caliente al guardar.

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

Un solo comando. Verifica con claude mcp list. Quita con claude mcp remove.

Casos de uso

Usos del mundo real: Discogs MCP

Estimate the resale value of your vinyl collection

👤 Record collectors ⏱ ~15 min intermediate

Cuándo usarlo: You're thinking of selling and want a realistic price range.

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

Resultado: A realistic resale floor and ceiling for your collection.

Errores comunes
  • Price suggestions are aggregated — Price suggestions are aggregated — actual sale price depends on condition grading. Always cross-check with recent sold listings.
Combinar con: fetch

Combinaciones

Combínalo con otros MCPs para multiplicar por 10

discogs-mcp + fetch

Pair with fetch for complementary capabilities

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

Herramientas

Lo que expone este MCP

HerramientaEntradasCuándo llamarCoste
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

Coste y límites

Lo que cuesta ejecutarlo

Cuota de API
See provider docs for rate limits
Tokens por llamada
Varies by tool
Monetario
See repo README for pricing details
Consejo
Cache tool results and avoid repeated identical calls.

Seguridad

Permisos, secretos, alcance

Almacenamiento de credenciales: Use environment variables; never commit secrets
Salida de datos: Tool calls go to the provider's API as documented

Resolución de problemas

Errores comunes y soluciones

401 Unauthorized

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

Verificar: search_releases with a known artist works
rate limited (60/min)

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

Verificar: Wait 60s and retry

Alternativas

Discogs MCP vs otros

AlternativaCuándo usarlaContrapartida
MusicBrainz MCPYou want CC-BY metadata without OAuthNo pricing or collection features

Más

Recursos

📖 Lee el README oficial en GitHub

🐙 Ver issues abiertas

🔍 Ver todos los 400+ servidores MCP y Skills