/ ディレクトリ / プレイグラウンド / Discogs MCP
● コミュニティ cswkim ⚡ 即起動

Discogs MCP

作者 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.

なぜ使うのか

主な機能

ライブデモ

実際の動作

discogs-mcp.replay ▶ 準備完了
0/0

インストール

クライアントを選択

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

Claude Desktop → Settings → Developer → Edit Config を開く。保存後、アプリを再起動。

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

Cursor は Claude Desktop と同じ mcpServers スキーマを使用。プロジェクト設定はグローバルより優先。

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

Cline サイドバーの MCP Servers アイコンをクリックし、"Edit Configuration" を選択。

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

Claude Desktop と同じ形式。Windsurf を再起動して反映。

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

Continue はマップではなくサーバーオブジェクトの配列を使用。

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

context_servers に追加。保存時に Zed がホットリロード。

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

ワンライナー。claude mcp list で確認、claude mcp remove で削除。

ユースケース

実用的な使い方: Discogs MCP

Estimate the resale value of your vinyl collection

👤 Record collectors ⏱ ~15 min intermediate

使うタイミング: You're thinking of selling and want a realistic price range.

前提条件
  • Server/skill installed and authenticated — See repo README
フロー
  1. Pull your collection
    List my Discogs collection with title, year, and median market price.✓ コピーしました
    → Table with median prices
  2. Find the top value items
    Sort by median price descending. Show the top 10 with VG+/NM condition pricing.✓ コピーしました
    → Sorted list with grade-specific pricing

結果: A realistic resale floor and ceiling for your collection.

注意点
  • Price suggestions are aggregated — Price suggestions are aggregated — actual sale price depends on condition grading. Always cross-check with recent sold listings.
組み合わせ: fetch

組み合わせ

他のMCPと組み合わせて10倍の力を

discogs-mcp + fetch

Pair with fetch for complementary capabilities

Use this server together with fetch to complete a multi-step task.✓ コピーしました

ツール

このMCPが提供する機能

ツール入力呼び出すタイミングコスト
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

コストと制限

運用コスト

APIクォータ
See provider docs for rate limits
呼び出しあたりのトークン
Varies by tool
金額
See repo README for pricing details
ヒント
Cache tool results and avoid repeated identical calls.

セキュリティ

権限、シークレット、影響範囲

認証情報の保管: Use environment variables; never commit secrets
データ送信先: Tool calls go to the provider's API as documented

トラブルシューティング

よくあるエラーと対処法

401 Unauthorized

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

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

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

確認: Wait 60s and retry

代替案

Discogs MCP 他との比較

代替案代わりに使う場面トレードオフ
MusicBrainz MCPYou want CC-BY metadata without OAuthNo pricing or collection features

その他

リソース

📖 GitHub の公式 README を読む

🐙 オープンな issue を見る

🔍 400以上のMCPサーバーとSkillsを見る