🇰🇷 한국어 | 🇯🇵 日本語 | 🇨🇳 简体中文 | 🇹🇼 繁體中文 | 🇧🇷 Português The OP.GG MCP Server is a Model Context Protocol implementation that provides AI agents with access to OP.GG game data for League of Legends, Teamfight Tactics, and Valorant. The server supports Streamable HTTP transport. Most tools require a desiredoutputfields parameter to specify which fields to return. This reduces payload size and i
Add this skill
npx mdskills install opgginc/opgg-mcpComprehensive gaming data API with well-documented tools across three major titles and flexible field selection
1# OP.GG MCP Server23🇰🇷 [한국어](./README.ko.md) | 🇯🇵 [日本語](./README.ja.md) | 🇨🇳 [简体中文](./README.zh-CN.md) | 🇹🇼 [繁體中文](./README.zh-TW.md) | 🇧🇷 [Português](./README.pt-BR.md)45The OP.GG MCP Server is a [Model Context Protocol](https://modelcontextprotocol.io) implementation that provides AI agents with access to OP.GG game data for League of Legends, Teamfight Tactics, and Valorant.6789## Endpoint1011```12https://mcp-api.op.gg/mcp13```1415The server supports **Streamable HTTP** transport.1617## Field Selection1819Most tools require a `desired_output_fields` parameter to specify which fields to return. This reduces payload size and improves response efficiency.2021### Syntax2223| Pattern | Description | Example |24|---------|-------------|---------|25| `field` | Single field | `name` |26| `parent.child` | Nested field | `data.summoner.level` |27| `array[]` | Array field | `champions[]` |28| `array[].field` | Field in array items | `data.champions[].name` |29| `{a,b,c}` | Multiple fields at same level | `{name,title,lore}` |30| `parent.{a,b}` | Multiple nested fields | `data.summoner.{level,name}` |31| `array[].{a,b}` | Multiple fields in array items | `data.champions[].{name,title}` |3233### Example3435```json36{37 "desired_output_fields": [38 "data.summoner.{game_name,tagline,level}",39 "data.summoner.league_stats[].{game_type,win,lose}",40 "data.summoner.league_stats[].tier_info.{tier,division,lp}"41 ]42}43```4445## Available Tools4647### League of Legends4849#### Champions50| Tool | Description |51|------|-------------|52| `lol_get_champion_analysis` | Get detailed champion stats (win/pick/ban rates), optimal builds (items, runes, skills, spells), counter matchups, and team synergies |53| `lol_get_champion_synergies` | Get champion synergy information |54| `lol_get_lane_matchup_guide` | Get lane matchup guide for a specific lane |55| `lol_list_champion_details` | Get ability, tip, lore, and stat metadata for up to 10 champions |56| `lol_list_champion_leaderboard` | Get champion leaderboard data |57| `lol_list_champions` | List all champion metadata |58| `lol_list_lane_meta_champions` | Get lane-by-lane champion tiers with win/pick/ban rates, KDA, and tier rankings |5960#### Summoners61| Tool | Description |62|------|-------------|63| `lol_get_summoner_game_detail` | Get detailed information for a specific game (all players) |64| `lol_get_summoner_profile` | Get summoner profile with rank, tier, LP, win rate, and champion pool |65| `lol_list_summoner_matches` | Get recent match history with per-game stats |6667#### Resources68| Tool | Description |69|------|-------------|70| `lol_list_discounted_skins` | Get currently discounted skins |71| `lol_list_items` | List all item metadata |7273#### Pro Players74| Tool | Description |75|------|-------------|76| `lol_get_pro_player_riot_id` | Get Riot ID for a pro player |7778#### Esports79| Tool | Description |80|------|-------------|81| `lol_esports_list_schedules` | Get upcoming LoL esports schedules with teams, leagues, and match times |82| `lol_esports_list_team_standings` | Get team standings for a LoL league |8384### Teamfight Tactics (TFT)8586| Tool | Description |87|------|-------------|88| `tft_get_champion_item_build` | Get champion item build recommendations |89| `tft_get_play_style` | Get play style recommendations |90| `tft_list_augments` | Get augment list and descriptions |91| `tft_list_champions_for_item` | Get champion recommendations for a specific item |92| `tft_list_item_combinations` | Get item combination recipes |93| `tft_list_meta_decks` | Get current meta decks |9495### Valorant9697| Tool | Description |98|------|-------------|99| `valorant_list_agent_compositions_for_map` | Get agent compositions for a specific map |100| `valorant_list_agent_statistics` | Get agent statistics and meta data |101| `valorant_list_agents` | Get agent metadata with abilities and roles |102| `valorant_list_leaderboard` | Get leaderboard by region (ap, br, eu, kr, latam, na) |103| `valorant_list_maps` | Get map metadata |104| `valorant_list_player_matches` | Get player match history |105106## License107108This project is licensed under the MIT License - see the LICENSE file for details.109110## Related Links111112- [Model Context Protocol](https://modelcontextprotocol.io)113- [OP.GG](https://op.gg)114
Full transparency — inspect the skill content before installing.