summoner_by_puuid
Pack: riot-games · Endpoint: https://gateway.pipeworx.io/riot-games/mcp
Fetch LoL summoner details (summoner ID, account ID, summonerLevel, profileIconId, revisionDate) for a puuid on a specific platform (e.g. na1, euw1).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
platform | string | yes | |
puuid | string | yes |
Example call
Arguments
{
"platform": "na1",
"puuid": "player-puuid-123456"
}
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":"summoner_by_puuid","arguments":{"platform":"na1","puuid":"player-puuid-123456"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('summoner_by_puuid', {
"platform": "na1",
"puuid": "player-puuid-123456"
});
Response shape
| Field | Type | Description |
|---|---|---|
id | string | Summoner ID |
accountId | string | Account ID |
puuid | string | Player UUID |
name | string | Summoner name |
profileIconId | number | Profile icon ID |
summonerLevel | number | Summoner level |
Full JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Summoner ID"
},
"accountId": {
"type": "string",
"description": "Account ID"
},
"puuid": {
"type": "string",
"description": "Player UUID"
},
"name": {
"type": "string",
"description": "Summoner name"
},
"profileIconId": {
"type": "number",
"description": "Profile icon ID"
},
"summonerLevel": {
"type": "number",
"description": "Summoner level"
}
}
}
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.