champion_rotations
Pack: riot-games · Endpoint: https://gateway.pipeworx.io/riot-games/mcp
Free champion rotation.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
platform | string | yes |
Example call
Arguments
{
"platform": "na1"
}
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":"champion_rotations","arguments":{"platform":"na1"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('champion_rotations', {
"platform": "na1"
});
Response shape
| Field | Type | Description |
|---|---|---|
freeChampionIds | array | Free champion IDs |
freeChampionIdsForNewPlayers | array | Free champion IDs for new players |
maxNewPlayerLevel | number | Max level for new player rotation |
Full JSON Schema
{
"type": "object",
"properties": {
"freeChampionIds": {
"type": "array",
"items": {
"type": "number"
},
"description": "Free champion IDs"
},
"freeChampionIdsForNewPlayers": {
"type": "array",
"items": {
"type": "number"
},
"description": "Free champion IDs for new players"
},
"maxNewPlayerLevel": {
"type": "number",
"description": "Max level for new player rotation"
}
}
}
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.