Lichess MCP

by karayaman
Verified

export_games_by_ids

Export multiple games by IDs

Input Schema

NameRequiredDescriptionDefault
clocksNoInclude clock comments
evalsNoInclude analysis
idsYesGame IDs separated by commas. Up to 300 IDs.
movesNoInclude the PGN moves
openingNoInclude opening name
pgnInJsonNoInclude the full PGN within the JSON response
tagsNoInclude the PGN tags

Input Schema (JSON Schema)

{ "properties": { "clocks": { "default": false, "description": "Include clock comments", "type": "boolean" }, "evals": { "default": false, "description": "Include analysis", "type": "boolean" }, "ids": { "description": "Game IDs separated by commas. Up to 300 IDs.", "type": "string" }, "moves": { "default": true, "description": "Include the PGN moves", "type": "boolean" }, "opening": { "default": false, "description": "Include opening name", "type": "boolean" }, "pgnInJson": { "default": false, "description": "Include the full PGN within the JSON response", "type": "boolean" }, "tags": { "default": true, "description": "Include the PGN tags", "type": "boolean" } }, "required": [ "ids" ], "type": "object" }