lol-summoner-game-history
Access recent match history for a League of Legends summoner by Riot ID and region. Analyze performance and gather insights for improvement with OP.GG MCP Server.
Instructions
Retrieves the recent match history of a specific summoner. If a user mentions a specific summoner, wants to know about their recent matches, wants to know how to improve or wants to get an advice, you must always call this function.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
game_name | Yes | The first part of a Riot ID (e.g., "Annie" in "Annie#Opgg"). | |
lang | Yes | Language code for localized content. Determines the language of returned data. | |
region | Yes | The region to search in (e.g., KR, NA, EUW). | |
tag_line | Yes | The second part of a Riot ID (e.g., "Opgg" in "Annie#Opgg"). |
Input Schema (JSON Schema)
{
"properties": {
"game_name": {
"description": "The first part of a Riot ID (e.g., \"Annie\" in \"Annie#Opgg\").",
"type": "string"
},
"lang": {
"description": "Language code for localized content. Determines the language of returned data.",
"enum": [
"ar_AE",
"cs_CZ",
"de_DE",
"el_GR",
"en_US",
"en_AU",
"en_GB",
"en_PH",
"en_SG",
"es_AR",
"es_ES",
"es_MX",
"fr_FR",
"hu_HU",
"it_IT",
"ja_JP",
"ko_KR",
"pl_PL",
"pt_BR",
"ro_RO",
"ru_RU",
"th_TH",
"tr_TR",
"vi_VN",
"zh_CN",
"zh_MY",
"zh_TW"
],
"type": "string"
},
"region": {
"description": "The region to search in (e.g., KR, NA, EUW).",
"enum": [
"KR",
"BR",
"EUNE",
"EUW",
"LAN",
"LAS",
"NA",
"OCE",
"RU",
"TR",
"JP",
"PH",
"SG",
"TH",
"TW",
"VN",
"ME",
"SEA"
],
"type": "string"
},
"tag_line": {
"description": "The second part of a Riot ID (e.g., \"Opgg\" in \"Annie#Opgg\").",
"type": "string"
}
},
"required": [
"game_name",
"tag_line",
"region",
"lang"
],
"type": "object"
}