Lichess MCP

by karayaman
Verified

make_board_move

Make a move in a board game

Input Schema

NameRequiredDescriptionDefault
gameIdYesThe game ID
moveYesMove in UCI format (e.g. e2e4)
offeringDrawNoWhether 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" }