Lichess MCP

by karayaman
Verified

make_move

Make a move in an ongoing game

Input Schema

NameRequiredDescriptionDefault
gameIdYesID of the game
moveYesMove in UCI format (e.g. 'e2e4')
offeringDrawNoWhether 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" }