Riot Games
live DataEntertainmentRiot Games API MCP.
11 tools
0ms auth
free tier 50 calls/day
Tools
account_by_riot_id Riot ID → account/puuid.
No parameters required.
Try it
Response
account_by_puuid Account by puuid.
No parameters required.
Try it
Response
summoner_by_puuid Summoner detail.
No parameters required.
Try it
Response
match_ids_by_puuid Recent match ids.
No parameters required.
Try it
Response
match Match detail.
No parameters required.
Try it
Response
match_timeline Match timeline.
No parameters required.
Try it
Response
league_entries Ranked entries.
No parameters required.
Try it
Response
champion_rotations Free champion rotation.
No parameters required.
Try it
Response
champion_mastery Champion mastery.
No parameters required.
Try it
Response
summoner_top_mastery Top N champion mastery.
No parameters required.
Try it
Response
status Platform status.
No parameters required.
Try it
Response
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
List available tools
bash
curl -X POST https://gateway.pipeworx.io/riot-games/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' Call a tool
bash
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.
TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("account_by_riot_id", {}); ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("riot games api mcp");