Skip to main content
Glama

opgg-esports

Official
by opgginc

OP.GG电子竞技MCP服务器

OP.GG Esports MCP 服务器是一个模型上下文协议 (MCP) 实现,可将 OP.GG Esports 数据与 AI 代理和平台无缝连接。该服务器使 AI 代理能够通过函数调用检索即将进行的英雄联盟比赛日程和信息。

概述

该 MCP 服务器通过标准化接口为 AI 代理提供访问 OP.GG Esports 数据的权限。它基于 TypeScript 和 Node.js 构建,可直接连接到 OP.GG Esports GraphQL API,并将数据格式化为 AI 模型和代理框架易于理解的格式。

特征

OP.GG Esports MCP 服务器目前支持以下工具:

  • get-lol-matches :从 OP.GG Esports 获取并格式化即将举行的英雄联盟比赛日程
    • 返回比赛名称、联赛、状态、比分、预定时间以及比赛的直接链接
    • 将数据格式化为干净、结构化的格式,以供 AI 使用

安装

通过 Smithery 安装

要通过Smithery自动为 Claude Desktop 安装 OP.GG Esports MCP:

npx -y @smithery/cli install @opgginc/esports-mcp --client claude

使用 npm/pnpm

# Install dependencies pnpm install # Build the project pnpm build

运行服务器

使用 pnpm
# Start the MCP server on stdio pnpm start
直接使用 Node.js
# Start using Node.js node dist/index.js
使用 npx
# Run directly with npx npx -y @opgg/esports-mcp

添加到 MCP 配置

要将此服务器添加到您的 MCP 配置(例如,Windsurf 的 mcp_config.json),请添加以下条目:

{ "mcpServers": { "opgg-esports": { "command": "node", "args": ["/path/to/esports-mcp/dist/index.js"] } } }

或者,如果已发布,您可以使用 npm 包:

{ "mcpServers": { "opgg-esports": { "command": "npx", "args": ["-y", "@opgg/esports-mcp"] } } }

用法

OP.GG Esports MCP 服务器可与任何兼容 MCP 的客户端配合使用。以下是一些示例:

列出可用的工具

{ "type": "list_tools" }

回复:

{ "tools": [ { "name": "get-lol-matches", "description": "Get upcoming LoL match schedules from OP.GG Esports" } ] }

获取即将举行的比赛日程

{ "type": "tool_call", "tool_call": { "name": "get-lol-matches" } }

回复:

{ "content": [ { "type": "text", "text": "Upcoming match schedules:\n\nMatch: Team A vs Team B\nLeague: LCK\nStatus: SCHEDULED\nScore: 0 - 0\nScheduled at: 4/6/2025, 7:00:00 PM\nDetails: https://esports.op.gg/matches/12345\n---\n..." } ] }

执照

该项目根据 MIT 许可证获得许可 - 有关详细信息,请参阅 LICENSE 文件。

相关链接

Deploy Server
A
security – no known vulnerabilities
F
license - not found
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电竞数据,轻松检索英雄联盟即将进行的比赛日程。通过标准化界面访问结构化的比赛信息,利用实时电竞数据增强AI的能力。

  1. 概述
    1. 特征
      1. 安装
        1. 通过 Smithery 安装
        2. 使用 npm/pnpm
        3. 运行服务器
        4. 添加到 MCP 配置
      2. 用法
        1. 列出可用的工具
        2. 获取即将举行的比赛日程
      3. 执照
        1. 相关链接

          Related MCP Servers

          • -
            security
            A
            license
            -
            quality
            A community-developed Model Context Protocol server that integrates with the Riot Games API to provide League of Legends data, enabling AI assistants to retrieve player information, ranked stats, champion mastery, and match summaries through natural language queries.
            Last updated -
            17
            MIT License
            • Apple
          • A
            security
            A
            license
            A
            quality
            A Model Context Protocol implementation that enables AI agents to retrieve game data from OP.GG for League of Legends, Teamfight Tactics, Valorant, and esports through function calling.
            Last updated -
            24
            35
            MIT License
            • Apple
            • Linux
          • -
            security
            F
            license
            -
            quality
            An MCP Server that provides access to League of Legends statistics via the SportData.io API, allowing agents to query and analyze LoL competitive gaming data.
            Last updated -
          • -
            security
            F
            license
            -
            quality
            Enables natural language queries to Google Calendar API for checking appointments, availability, and events. Supports flexible time ranges, timezone handling, and both service account and OAuth authentication methods.
            Last updated -

          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/esports-mcp'

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