OP.GG MCP Server

Official
by opgginc
MIT License
1
  • Apple
  • Linux

Integrations

  • Provides access to Valorant game data including meta maps, character statistics, leaderboards, agent compositions, and player match histories.

OP.GG MCP サーバー

OP.GG MCPサーバーは、OP.GGデータをAIエージェントおよびプラットフォームにシームレスに接続するモデルコンテキストプロトコル実装です。このサーバーにより、AIエージェントは関数呼び出しを通じて様々なOP.GGデータを取得できます。

概要

このMCPサーバーは、AIエージェントが標準化されたインターフェースを介してOP.GGデータにアクセスできるようにします。リモートサーバー( https://mcp-api.op.gg/mcp/sse )へのシンプルな接続方法を提供し、簡単なインストールで、AIモデルやエージェントフレームワークで容易に利用できる形式でOP.GGデータに即座にアクセスできます。

特徴

OP.GG MCP サーバーは現在、次のツールをサポートしています。

リーグ・オブ・レジェンド

  • lol-champion-analysis : 特定のチャンピオンの分析データを取得します
  • lol-champion-leader-board : そのチャンピオンのランクを取得します

eスポーツ(リーグ・オブ・レジェンド)

  • esports-lol-schedules : 今後のLoLの試合スケジュールを入手
  • esports-lol-team-standings : LoLリーグのチーム順位を取得します

チームファイト タクティクス (TFT)

  • tft-meta-trend-deck-list : 現在のメタデッキを取得するための TFT デッキリストツール
  • tft-meta-item-combinations : アイテムの組み合わせとレシピに関する情報を取得するための TFT ツール
  • tft-champion-item-build : チャンピオンアイテムビルド情報を取得するためのTFTツール
  • tft-recommend-champion-for-item : 特定のアイテムのチャンピオン推奨を取得するための TFT ツール
  • tft-play-style-comment : このツールはTFTチャンピオンのプレイスタイルに関するコメントを提供します

ヴァロラント

  • valorant-meta-maps : Valorant マップのメタデータ
  • valorant-meta-characters : Valorant キャラクターのメタデータ
  • valorant-leaderboard : 地域別にValorantのリーダーボードを取得します
  • valorant-agents-composition-with-map : Valorantマップのエージェント構成データを取得します
  • valorant-characters-statistics : Valorantのキャラクター統計データを取得します。オプションでマップでフィルタリングできます。
  • valorant-player-matches : ゲーム名とタグラインを使用して、Valorant プレイヤーの試合履歴を取得します。

使用法

OP.GG MCPサーバーは、MCP対応クライアントであればどれでもご利用いただけます。以下では、Claude Desktopを例にインストール方法を説明します。

Smithery経由でインストール

Smithery経由で Claude Desktop 用の OP.GG MCP を自動的にインストールするには:

$ npx -y @smithery/cli@latest install @opgginc/opgg-mcp --client claude --key {SMITHERY_API_KEY}

MCP構成への追加

このサーバーを Claude Desktop MCP 構成に追加するには、 claude_desktop_config.jsonファイルに次のエントリを追加します。

Mac/Linux
{ "mcpServers": { "opgg-mcp": { "command": "npx", "args": [ "-y", "@smithery/cli@latest", "run", "@opgginc/opgg-mcp", "--key", "{SMITHERY_API_KEY}" ] } } }
ウィンドウズ
{ "mcpServers": { "opgg-mcp": { "command": "cmd", "args": [ "/c", "npx", "-y", "@smithery/cli@latest", "run", "@opgginc/opgg-mcp", "--key", "{SMITHERY_API_KEY}" ] } } }

設定を追加した後、変更を有効にするために Claude Desktop を再起動します。

SSE経由の直接接続

SSEエンドポイントに直接接続したい場合は、 mcp-remoteパッケージをご利用ください。これにより、OP.GG MCPサーバー全体をインストールすることなく、リモートサーバーに簡単に接続できます。

claude_desktop_config.jsonファイルに次の内容を追加します。

Mac/Linux
{ "mcpServers": { "opgg-mcp": { "command": "npx", "args": [ "mcp-remote", "https://mcp-api.op.gg/mcp/sse" ] } } }
ウィンドウズ
{ "mcpServers": { "opgg-mcp": { "command": "cmd", "args": [ "/c", "npx", "mcp-remote", "https://mcp-api.op.gg/mcp/sse" ] } } }

この構成では、 mcp-remoteパッケージを使用して SSE エンドポイントへの直接接続を確立し、すべての OP.GG データ ツールにすぐにアクセスできるようになります。

利用可能なツールの一覧

{ "method": "tools/list", "params": {} }

応答:

{ "tools": [ { "name": "lol-champion-analysis", "description": "Fetch analysis data for a specific champion" }, { "name": "lol-champion-leader-board", "description": "Fetch that champion's rank" }, { "name": "esports-lol-schedules", "description": "Get upcoming LoL match schedules" }, { "name": "esports-lol-team-standings", "description": "Get team standings for a LoL league" }, { "name": "tft-meta-trend-deck-list", "description": "TFT deck list tool for retrieving current meta decks" }, { "name": "tft-meta-item-combinations", "description": "TFT tool for retrieving information about item combinations and recipes" }, { "name": "tft-champion-item-build", "description": "TFT tool for retrieving champion item build information" }, { "name": "tft-recommend-champion-for-item", "description": "TFT tool for retrieving champion recommendations for a specific item" }, { "name": "tft-play-style-comment", "description": "This tool provides comments on the playstyle of TFT champions" }, { "name": "valorant-meta-maps", "description": "Valorant map meta data" }, { "name": "valorant-meta-characters", "description": "Valorant character meta data" }, { "name": "valorant-leaderboard", "description": "Fetch Valorant leaderboard by region" }, { "name": "valorant-agents-composition-with-map", "description": "Retrieve agent composition data for a Valorant map" }, { "name": "valorant-characters-statistics", "description": "Retrieve character statistics data for Valorant, optionally filtered by map" }, { "name": "valorant-player-matches", "description": "Retrieve match history for a Valorant player using their game name and tag line" } ] }

ライセンス

このプロジェクトは MIT ライセンスに基づいてライセンスされています - 詳細については LICENSE ファイルを参照してください。

関連リンク

You must be authenticated.

A
security – no known vulnerabilities
A
license - permissive license
A
quality - confirmed to work

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

AI エージェントが関数呼び出しを通じて League of Legends、Teamfight Tactics、Valorant、e スポーツの OP.GG からゲーム データを取得できるようにするモデル コンテキスト プロトコルの実装。

  1. Overview
    1. Features
      1. League of Legends
      2. Esports (League of Legends)
      3. Teamfight Tactics (TFT)
      4. Valorant
    2. Usage
      1. Installing via Smithery
      2. Adding to MCP Configuration
      3. Direct Connection via SSE
      4. Listing Available Tools
    3. License
      1. Related Links

        Related MCP Servers

        • -
          security
          A
          license
          -
          quality
          A Model Context Protocol server enabling AI agents to access and manipulate ServiceNow data through natural language interactions, allowing users to search for records, update them, and manage scripts.
          Last updated -
          9
          Python
          MIT License
        • -
          security
          F
          license
          -
          quality
          Model Context Protocol server that enables LLMs and AI assistants to retrieve real-time Dota 2 statistics, match data, player information, and game metrics through a standardized interface.
          Last updated -
          4
          Python
          • Linux
        • -
          security
          A
          license
          -
          quality
          A Model Context Protocol server that enables AI assistants to interact with the Godot game engine, allowing them to launch the editor, run projects, capture debug output, and control project execution.
          Last updated -
          62
          JavaScript
          MIT License
        • -
          security
          F
          license
          -
          quality
          A Model Context Protocol server that enables role-based context management for AI agents, allowing users to establish specific instructions, maintain partitioned memory, and adapt tone for different agent roles in their system.
          Last updated -
          TypeScript

        View all related MCP servers

        ID: roli5qowr1