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

NameTypeRequiredDescription
regionstringyes
puuidstringyes
startnumberno
countnumberno
queuenumberno
typestringno
startTimenumberno
endTimenumberno

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

FieldTypeDescription
itemsarrayArray of match IDs
countintegerNumber 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.

Regenerated from source · build July 6, 2026