make_board_move
Execute a move in a Lichess chess game by specifying the game ID and move in UCI format, with an option to offer or accept a draw.
Instructions
Make a move in a board game
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gameId | Yes | The game ID | |
move | Yes | Move in UCI format (e.g. e2e4) | |
offeringDraw | No | Whether to offer/accept a draw |
Input Schema (JSON Schema)
{
"properties": {
"gameId": {
"description": "The game ID",
"type": "string"
},
"move": {
"description": "Move in UCI format (e.g. e2e4)",
"type": "string"
},
"offeringDraw": {
"default": false,
"description": "Whether to offer/accept a draw",
"type": "boolean"
}
},
"required": [
"gameId",
"move"
],
"type": "object"
}