/ Diretório / Playground / Discogs MCP
● Comunidade 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 que usar

Principais recursos

Demo ao vivo

Como fica na prática

discogs-mcp.replay ▶ pronto
0/0

Instalar

Escolha seu 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"
      ]
    }
  }
}

Abra Claude Desktop → Settings → Developer → Edit Config. Reinicie após salvar.

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

Cursor usa o mesmo esquema mcpServers que o Claude Desktop. Config de projeto vence a global.

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

Clique no ícone MCP Servers na barra lateral do Cline, depois "Edit Configuration".

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

Mesmo formato do Claude Desktop. Reinicie o Windsurf para aplicar.

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

O Continue usa um array de objetos de servidor em vez de um map.

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

Adicione em context_servers. Zed recarrega automaticamente ao salvar.

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

Uma linha só. Verifique com claude mcp list. Remova com claude mcp remove.

Casos de uso

Usos do mundo real: Discogs MCP

Estimate the resale value of your vinyl collection

👤 Record collectors ⏱ ~15 min intermediate

Quando usar: You're thinking of selling and want a realistic price range.

Pré-requisitos
  • Server/skill installed and authenticated — See repo README
Fluxo
  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.

Armadilhas
  • Price suggestions are aggregated — Price suggestions are aggregated — actual sale price depends on condition grading. Always cross-check with recent sold listings.
Combine com: fetch

Combinações

Combine com outros MCPs para 10× de alavancagem

discogs-mcp + fetch

Pair with fetch for complementary capabilities

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

Ferramentas

O que este MCP expõe

FerramentaEntradasQuando chamarCusto
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

Custo e limites

O que custa rodar

Cota de API
See provider docs for rate limits
Tokens por chamada
Varies by tool
Monetário
See repo README for pricing details
Dica
Cache tool results and avoid repeated identical calls.

Segurança

Permissões, segredos, alcance

Armazenamento de credenciais: Use environment variables; never commit secrets
Saída de dados: Tool calls go to the provider's API as documented

Solução de problemas

Erros comuns e correções

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

AlternativaQuando usarTroca
MusicBrainz MCPYou want CC-BY metadata without OAuthNo pricing or collection features

Mais

Recursos

📖 Leia o README oficial no GitHub

🐙 Ver issues abertas

🔍 Ver todos os 400+ servidores MCP e Skills