get_arena_games
Retrieve games from a specific Lichess arena tournament by providing the tournament ID using the MCP server. Facilitates analysis and review of tournament matches.
Instructions
Get games of an arena tournament
Input Schema
Name | Required | Description | Default |
---|---|---|---|
tournamentId | Yes | Tournament ID |
Input Schema (JSON Schema)
{
"properties": {
"tournamentId": {
"description": "Tournament ID",
"type": "string"
}
},
"required": [
"tournamentId"
],
"type": "object"
}