make_move
Send chess moves in UCI format to an ongoing game on Lichess via the MCP server, enabling gameplay continuation and draw offers.
Instructions
Make a move in an ongoing game
Input Schema
Name | Required | Description | Default |
---|---|---|---|
gameId | Yes | ID of the game | |
move | Yes | Move in UCI format (e.g. 'e2e4') | |
offeringDraw | No | Whether to offer/accept a draw |
Input Schema (JSON Schema)
{
"properties": {
"gameId": {
"description": "ID of the game",
"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"
}