Connector guide2-minute read19 MCP toolsEnglish · Deutsch · Italiano

SorareをGitHub Copilotに接続する方法 — MCPを介したNFTファンタジーフットボール

AnythingMCPを使用してSorareのGraphQL APIをGitHub Copilot Chatに接続します。自然言語でカード、選手、ラインアップ、オークション、ウォレット、移籍市場をクエリします。Bcryptソルト付きのログインと30日間のJWTキャッシュが自動的に処理されます。

HCBy HelpCode teamUpdated 2 min read Open source on GitHub

No credit card · 7-day trial · Self-host alternative available

github copilot · Sorare connector
Pull my current Sorare lineup and tell me where I'm weakest this gameweek.
AI
Callingsorare_get_lineupplayer_recent_scores
Your Common Rivals lineup is solid up top, but the MF slot (Saúl) is your weakness — recent 5-game L5 = 34.2, well under your team average of 51.
sorare_current_usersorare_list_my_cardssorare_player_floor_pricesorare_live_sale_offerssorare_get_auction+ more
  • 7-day free trial
    No credit card required
  • GDPR & SOC 2 ready
    EU data residency, audit logs
  • Open-source on GitHub
    Source-available BSL-1.1
  • Works with ChatGPT, Claude, Gemini
    Any MCP-compatible client

What you'll be able to ask

Real prompts that work after a 4-minute setup.

Drop these into GitHub Copilot once the connector is installed. Tools listed below each prompt are auto-called by the agent.

Pull my current Sorare lineup and tell me where I'm weakest this game week.
sorare_get_lineupplayer_recent_scores
List every rare Vinícius Júnior card minted in season 2024.
sorare_search_playerlist_player_cards
What's the floor price right now for limited Bukayo Saka cards?
sorare_player_floor_pricetoken_prices
Find auctions ending in the next 90 minutes for Liverpool players.
sorare_live_sale_offerssorare_get_auction

No install? Use cloud.anythingmcp.com directly.

Sign in, install the Sorare Fantasy Football in one click, paste the credentials, mint an MCP API key — done. No Docker, no git clone, no local server to run.

Open Cloud

Sorare

💡 インストール不要?cloud.anythingmcp.comを直接使用してください。 サインインし、Connectors → Sorareをクリックし、Sorareのメールアドレスとパスワードを貼り付け、MCP APIキーを発行 — 完了です。Dockerもgit cloneも不要で、ローカルサーバーを実行する必要もありません。以下のローカルインストール手順をスキップして、クライアント接続セクションに直接進むことができます。

SorareをGitHub Copilotに接続する

GitHub Copilot Chatは、VS CodeおよびJetBrainsのmcp設定を通じて**Model Context Protocol (MCP)**をサポートしています。AnythingMCPがSorareの完全なGraphQL APIを管理されたMCPサーバーとして公開することで、エディタを離れることなく、Copilotから直接カード、選手、ラインアップ、二次市場、ウォレットをクエリできます。

できること

  • "Sorare: 今シーズンのSo5での私の現在のウォレット残高と成績はどうですか?"
  • "Sorare: 現在のBukayo Sakaの最も安いLimitedカードを見つけてください。"
  • "Sorare: 最近のSo5スコアでソートされた私のRareカードを選手別にリストアップしてください。"
  • "Sorare: 過去30日間のVinícius JúniorのRareカードの最近の販売価格を表示してください。"
Watch on YouTube →

🔒 この動画は二回クリック同意パターンを介して埋め込まれています — 再生ボタンを押すまでGoogleには何も送信されません。

前提条件

  • https://sorare.com でのアクティブなSorareアカウント — ヘッドレス/エージェント使用のために2FA無効の専用の読み取り専用アカウントを推奨します。
  • cloud.anythingmcp.comで利用可能なAnythingMCP(3分で設定)。
  • MCPが有効なGitHub Copilot Chat(VS Code Insiders ≥ 1.95またはMCPサポートのあるJetBrainsプラグイン)。

ステップ1 — cloud.anythingmcp.comでSorareアダプターをインストール(コード不要)

  1. **cloud.anythingmcp.com**にサインインします。
  2. Connectors → Sorare → Installを開きます。
  3. 次を貼り付けます:
    • SORARE_EMAIL — あなたのSorareアカウントのメールアドレス
    • SORARE_PASSWORD — あなたの平文のパスワード(ログイン前にローカルでbcryptハッシュ化され、暗号化されていない状態では保存されません)
  4. Profile → MCP API Keys → New Keyの下でMCP APIキーを発行します。それをコピーします。

AUDフィールドはありません — アダプターはJWTオーディエンスをanythingmcpにハードコーディングしています。

ステップ2 — CopilotにSorareを追加(コード不要、コマンドパレット)

VS Code(Insiders ≥ 1.95、またはMCPサポートのある安定版)で:

  1. Cmd/Ctrl + Shift + Pを押してコマンドパレットを開きます。
  2. **MCP: Add Server**と入力し、HTTPオプションを選択します。
  3. 次を貼り付けます:
    • Server URL: https://cloud.anythingmcp.com/mcp
    • Authorization header: Bearer YOUR_MCP_API_KEY(ステップ1のもの)
  4. サーバー名をsorareとし、確認します。

VS CodeはCopilot Chatを自動的に再起動します。すべての18のSorareツールがCopilotツールピッカーに表示されます — プロンプトを入力し始めてください。

JetBrains? 同じ流れ — Copilotパネルを開く → MCPサーバー → サーバーを追加 → URL + Bearerトークンを貼り付けます。

高度な設定: settings.jsonを手動で編集する

設定ファイルを直接編集したい場合は、settings.jsonを開きます(Cmd/Ctrl + Shift + P → "Preferences: Open User Settings (JSON)")し、次を追加します:

{
  "mcp.servers": {
    "sorare": {
      "url": "https://cloud.anythingmcp.com/mcp",
      "transport": "http",
      "headers": {
        "Authorization": "Bearer YOUR_MCP_API_KEY"
      }
    }
  }
}

Copilot Chatを再起動します。18のSorareツールが自動的に表示されます — Copilotはプロンプトに基づいて適切なものを選択します。

利用可能なツール(18)

グループツール
アイデンティティ / ウォレットsorare_current_user, sorare_wallet_balance, sorare_my_trophies_summary, sorare_user_by_slug
カードsorare_list_my_cards, sorare_get_card_by_slug, sorare_list_player_cards
選手sorare_search_player, sorare_player_recent_scores, sorare_player_floor_price
市場sorare_live_sale_offers, sorare_token_prices, sorare_get_auction, sorare_get_lineup
一般的なGraphQLsorare_graphql_schema_url, sorare_graphql_schema, sorare_graphql_query, sorare_graphql_mutation, sorare_graphql_subscription

18のツールを超えて — あなたのAIは任意のSorare GraphQL操作を呼び出します

これらの専用ツールは最も一般的なエントリーポイントをカバーしていますが、すべてのGraphQLコネクタには**sorare_graphql_schemasorare_graphql_querysorare_graphql_mutation、およびsorare_graphql_subscriptionが付属しており、AIがSorareのスキーマがサポートする任意の**操作を構成できる自動挿入されたエスケープハッチです。

これが固定ツールリストと実際のエージェントの違いです。尋ねてみてください:

"次のゲームウィークで得点する可能性が高く、30日間の平均よりも30%以上安いLimitedカードを3枚見つけてください。トップ5リーグのみ。"

…すると、あなたのAIはSorareのGraphQLスキーマを歩き、topPerformersをスキャンし、フロア価格のためにliveSingleSaleOffersと結合し、30日間の平均のためにtokenPricesをクロスリファレンスし、リザーブプラン付きの購入リストを提供します。すべて1つのプロンプトから、あなたの手動でのGraphQLは不要です。

👉 Sorareのローンチ発表での完全なチャットセッションを参照してください — 実際のClaudeが自力で€100の購入戦略を構成するラウンドトリップです。

トークンのローテーション

SorareのJWTは約30日間有効です。AnythingMCPは有効期限の24時間前に更新し、401エラーが発生した場合に再発行します — Copilotは期限切れのトークンエラーを決して見ません。

FAQ

CopilotはAnythingMCPと同じマシン上にある必要がありますか? いいえ。MCPのURLは到達可能なホストであればどれでも構いません;cloud.anythingmcp.comはどこからでも動作します。

Copilotを読み取り専用のSorareツールに制限できますか? はい — AnythingMCPで、sorare_get_*sorare_list_*sorare_current_usersorare_wallet_balancesorare_token_prices、およびsorare_player_*ツールのみをホワイトリストに登録するロールを作成し、それにあなたのMCP APIキーをバインドします。

CopilotのMCP統合はJetBrainsでも機能しますか? はい — JetBrains Copilot設定パネルの下で同じJSON形式です。

次のステップ

Ready to ship

Your Sorare agent is one click away.

Install the connector, paste the key, prompt GitHub Copilot. Free for 7 days, no credit card.