Skip to main content
Glama
opgginc

OP.GG MCP Server

Official
by opgginc

OP.GG MCP サーバー

鍛冶屋のバッジ

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

opgg-mcp-lol-リーダーボードopgg-mcp-eスポーツ

概要

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

Related MCP server: MCP Base

特徴

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 ファイルを参照してください。

関連リンク

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

Resources

Looking for Admin?

Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/opgginc/opgg-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server