export_ongoing_game
Export ongoing chess games of a user from the Lichess MCP server, capturing PGN moves, tags, clock comments, evaluations, and opening details for analysis or record-keeping.
Instructions
Export ongoing game of a user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
clocks | No | Include clock comments in the PGN moves | |
evals | No | Include analysis evaluation comments | |
moves | No | Include the PGN moves | |
opening | No | Include opening name | |
pgnInJson | No | Include the full PGN within the JSON response | |
tags | No | Include the PGN tags | |
username | Yes | The 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"
}