Skip to main content
Glama

OP.GG MCP Server

Official
by opgginc

OP.GG MCP 서버

OP.GG MCP 서버는 OP.GG 데이터를 AI 에이전트 및 플랫폼과 원활하게 연결하는 모델 컨텍스트 프로토콜(MCP) 구현입니다. 이 서버를 통해 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-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를 자동으로 설치하는 방법:

지엑스피1

MCP 구성에 추가

Claude Desktop MCP 구성에 이 서버를 추가하려면 claude_desktop_config.json 파일에 다음 항목을 추가하세요.

맥/리눅스
{ "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 파일에 다음을 추가하세요.

맥/리눅스
{ "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 라이선스에 따라 라이선스가 부여되었습니다. 자세한 내용은 라이선스 파일을 참조하세요.

관련 링크

Install Server
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 에이전트가 함수 호출을 통해 OP.GG에서 League of Legends, Teamfight Tactics, Valorant 및 e스포츠의 게임 데이터를 검색할 수 있도록 하는 모델 컨텍스트 프로토콜 구현입니다.

  1. 개요
    1. 특징
      1. 리그 오브 레전드
      2. e스포츠(리그 오브 레전드)
      3. 팀파이트 택틱스(TFT)
      4. 발로란트
    2. 용법
      1. Smithery를 통해 설치
      2. MCP 구성에 추가
      3. SSE를 통한 직접 연결
      4. 사용 가능한 도구 목록
    3. 특허
      1. 관련 링크

        Related MCP Servers

        • -
          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
        • 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
          TypeScript

        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