Lichess MCP

by karayaman
Verified

export_ongoing_game

Export ongoing game of a user

Input Schema

NameRequiredDescriptionDefault
clocksNoInclude clock comments in the PGN moves
evalsNoInclude analysis evaluation comments
movesNoInclude the PGN moves
openingNoInclude opening name
pgnInJsonNoInclude the full PGN within the JSON response
tagsNoInclude the PGN tags
usernameYesThe username

Input Schema (JSON Schema)

{ "properties": { "clocks": { "default": true, "description": "Include clock comments in the PGN moves", "type": "boolean" }, "evals": { "default": true, "description": "Include analysis evaluation comments", "type": "boolean" }, "moves": { "default": true, "description": "Include the PGN moves", "type": "boolean" }, "opening": { "default": true, "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" }, "username": { "description": "The username", "type": "string" } }, "required": [ "username" ], "type": "object" }