esports-lol-team-standings
Retrieve current League of Legends team standings for specific leagues, such as LCK, LPL, or Worlds, using structured data from OP.GG's MCP Server for esports insights.
Instructions
Get team standings for a LoL league.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
shortName | Yes | League short name (LCK, LPL, Worlds, ...) |
Input Schema (JSON Schema)
{
"properties": {
"shortName": {
"description": "League short name (LCK, LPL, Worlds, ...)",
"enum": [
"lck",
"lpl",
"lec",
"lcs",
"ljl",
"vcs",
"cblol",
"lcl",
"lla",
"tcl",
"pcs",
"lco",
"lta south",
"lta north",
"lcp",
"first stand",
"fst",
"al",
"msi",
"worlds"
],
"type": "string"
}
},
"required": [
"shortName"
],
"type": "object"
}