match
Pack: riot-games · Endpoint: https://gateway.pipeworx.io/riot-games/mcp
Fetch full LoL match detail by match ID (e.g. NA1_123): participants, champions, stats, team outcomes, and game metadata.
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","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', {
"region": "americas",
"match_id": "na1_4239331234"
});
Response shape
| Field | Type | Description |
|---|---|---|
metadata | object | Match metadata |
info | object | Match info with participants and game details |
Full JSON Schema
{
"type": "object",
"properties": {
"metadata": {
"type": "object",
"description": "Match metadata"
},
"info": {
"type": "object",
"description": "Match info with participants and game details"
}
}
}
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.