match_ids_by_puuid
Pack: riot-games · Endpoint: https://gateway.pipeworx.io/riot-games/mcp
List recent LoL match IDs for a puuid on a regional cluster; filter by queue type, start/end timestamp, and paginate with start + count.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
region | string | yes | |
puuid | string | yes | |
start | number | no | |
count | number | no | |
queue | number | no | |
type | string | no | |
startTime | number | no | |
endTime | number | no |
Example call
Arguments
{
"region": "americas",
"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":"match_ids_by_puuid","arguments":{"region":"americas","puuid":"player-puuid-123456"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('match_ids_by_puuid', {
"region": "americas",
"puuid": "player-puuid-123456"
});
More examples
{
"region": "americas",
"puuid": "player-puuid-123456",
"start": 0,
"count": 20,
"queue": 420
}
Response shape
Always returns: items, count
| Field | Type | Description |
|---|---|---|
items | array | Array of match IDs |
count | integer | Number of items returned. |
Full JSON Schema
{
"type": "object",
"properties": {
"items": {
"type": "array",
"items": {
"type": "string",
"description": "Match ID"
},
"description": "Array of match IDs"
},
"count": {
"type": "integer",
"description": "Number of items returned."
}
},
"required": [
"items",
"count"
]
}
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.