Skip to main content
Glama
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データに即座にアクセスできます。

特徴

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

関連リンク

Related MCP Servers

  • A
    security
    A
    license
    A
    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 -
    17
    5
    MIT License
    • Linux
  • -
    security
    F
    license
    -
    quality
    A generic Model Context Protocol framework for building AI-powered applications that provides standardized ways to create MCP servers and clients for integrating LLMs with support for Ollama and Supabase.
    Last updated -
  • -
    security
    A
    license
    -
    quality
    An experimental Model Context Protocol server that enables Large Language Models to read, search, and manipulate OpenFGA authorization stores, unlocking fine-grained access control for agentic AI and natural language interactions.
    Last updated -
    9
    Apache 2.0
  • A
    security
    F
    license
    A
    quality
    Connect AI agents to OP.GG Esports data and retrieve upcoming League of Legends match schedules effortlessly. Access structured match information through a standardized interface, enhancing your AI's capabilities with real-time esports data.
    Last updated -
    1
    6

View all related MCP servers

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