champion_rotations

Pack: riot-games · Endpoint: https://gateway.pipeworx.io/riot-games/mcp

Free champion rotation.

Parameters

NameTypeRequiredDescription
platformstringyes

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

FieldTypeDescription
freeChampionIdsarrayFree champion IDs
freeChampionIdsForNewPlayersarrayFree champion IDs for new players
maxNewPlayerLevelnumberMax 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.

Regenerated from source · build July 6, 2026