match_timeline
Pack: riot-games · Endpoint: https://gateway.pipeworx.io/riot-games/mcp
Fetch per-frame event timeline for a LoL match ID — kills, item purchases, level-ups, building destructions at each minute interval.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
region | string | yes | |
match_id | string | yes |
Example call
Arguments
{
"region": "americas",
"match_id": "na1_4239331234"
}
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_timeline","arguments":{"region":"americas","match_id":"na1_4239331234"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('match_timeline', {
"region": "americas",
"match_id": "na1_4239331234"
});
Response shape
| Field | Type | Description |
|---|---|---|
metadata | object | Timeline metadata |
info | object | Timeline info with frames |
Full JSON Schema
{
"type": "object",
"properties": {
"metadata": {
"type": "object",
"description": "Timeline metadata"
},
"info": {
"type": "object",
"description": "Timeline info with frames"
}
}
}
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.