Riot Games

live DataEntertainment

Riot 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
account_by_puuid

Account by puuid.

No parameters required.

Try it
summoner_by_puuid

Summoner detail.

No parameters required.

Try it
match_ids_by_puuid

Recent match ids.

No parameters required.

Try it
match

Match detail.

No parameters required.

Try it
match_timeline

Match timeline.

No parameters required.

Try it
league_entries

Ranked entries.

No parameters required.

Try it
champion_rotations

Free champion rotation.

No parameters required.

Try it
champion_mastery

Champion mastery.

No parameters required.

Try it
summoner_top_mastery

Top N champion mastery.

No parameters required.

Try it
status

Platform 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.

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");