league_entries
Pack: riot-games · Endpoint: https://gateway.pipeworx.io/riot-games/mcp
List all LoL ranked ladder entries for a queue (RANKED_SOLO_5x5), tier (DIAMOND), and division (I) on a platform; paginates with page parameter.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
platform | string | yes | |
queue | string | yes | |
tier | string | yes | |
division | string | yes | |
page | number | no |
Example call
Arguments
{
"platform": "na1",
"queue": "RANKED_SOLO_5x5",
"tier": "DIAMOND",
"division": "I"
}
curl
curl -X POST https://gateway.pipeworx.io/riot-games/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"league_entries","arguments":{"platform":"na1","queue":"RANKED_SOLO_5x5","tier":"DIAMOND","division":"I"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('league_entries', {
"platform": "na1",
"queue": "RANKED_SOLO_5x5",
"tier": "DIAMOND",
"division": "I"
});
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | Array of league entries |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "object",
"properties": {
"summonerId": {
"type": "string",
"description": "Summoner ID"
},
"queueType": {
"type": "string",
"description": "Queue type"
},
"tier": {
"type": "string",
"description": "Tier rank"
},
"rank": {
"type": "string",
"description": "Division rank"
},
"leaguePoints": {
"type": "number",
"description": "League points"
},
"wins": {
"type": "number",
"description": "Number of wins"
},
"losses": {
"type": "number",
"description": "Number of losses"
}
}
},
"description": "Array of league entries"
},
"count": {
"type": "integer",
"description": "Number of items returned."
}
},
"required": [
"items",
"count"
]
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"riot-games": {
"url": "https://gateway.pipeworx.io/riot-games/mcp"
}
}
}
See Getting Started for client-specific install steps.