Riot Games
liveGamesRiot Games API — League of Legends player accounts, match history, ranked entries, champion mastery, and rotations.
BYO key only — get a development key at developer.riotgames.com. Pass _apiKey on the gateway URL.
{
"mcpServers": {
"pipeworx-riot-games": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/riot-games/mcp?_apiKey=your_riot_key"
]
}
}
}Tools
account_by_riot_idRiot ID → account/puuid.
No parameters required.
Try it
account_by_puuidAccount by puuid.
No parameters required.
Try it
summoner_by_puuidSummoner detail.
No parameters required.
Try it
match_ids_by_puuidRecent match ids.
No parameters required.
Try it
matchMatch detail.
No parameters required.
Try it
match_timelineMatch timeline.
No parameters required.
Try it
league_entriesRanked entries.
No parameters required.
Try it
champion_rotationsFree champion rotation.
No parameters required.
Try it
champion_masteryChampion mastery.
No parameters required.
Try it
summoner_top_masteryTop N champion mastery.
No parameters required.
Try it
statusPlatform status.
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/riot-games/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'curl -X POST https://gateway.pipeworx.io/riot-games/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"account_by_riot_id","arguments":{}}}'Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("account_by_riot_id", {});// Or ask in plain English:
const answer = await px.ask("riot games api — league of legends player accounts, match history, ranked entries, champion mastery, and rotations");