Lichess MCP

by karayaman
Verified

create_challenge

Create a new challenge

Input Schema

NameRequiredDescriptionDefault
colorNorandom
timeControlNoTime control (e.g. '10+0' for 10 minutes)10+0
usernameYesUsername of the player to challenge

Input Schema (JSON Schema)

{ "properties": { "color": { "default": "random", "enum": [ "white", "black", "random" ], "type": "string" }, "timeControl": { "default": "10+0", "description": "Time control (e.g. '10+0' for 10 minutes)", "type": "string" }, "username": { "description": "Username of the player to challenge", "type": "string" } }, "required": [ "username" ], "type": "object" }