create_simul
Set up a new simul on Lichess by specifying name, game variant, clock settings, rating limits, host color, and event description for organized multi-player chess matches.
Instructions
Create a new simul
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| clockIncrement | No | Clock increment in seconds | |
| clockTime | No | Clock initial time in minutes | |
| color | No | Color the host will play | white |
| maxRating | No | Maximum rating to join | |
| minRating | No | Minimum rating to join | |
| name | Yes | Name of the simul | |
| text | No | Description of the simul | |
| variant | No | Variant key | standard |
Input Schema (JSON Schema)
{
"properties": {
"clockIncrement": {
"default": 3,
"description": "Clock increment in seconds",
"type": "number"
},
"clockTime": {
"default": 5,
"description": "Clock initial time in minutes",
"type": "number"
},
"color": {
"default": "white",
"description": "Color the host will play",
"enum": [
"white",
"black"
],
"type": "string"
},
"maxRating": {
"description": "Maximum rating to join",
"type": "number"
},
"minRating": {
"description": "Minimum rating to join",
"type": "number"
},
"name": {
"description": "Name of the simul",
"type": "string"
},
"text": {
"description": "Description of the simul",
"type": "string"
},
"variant": {
"default": "standard",
"description": "Variant key",
"enum": [
"standard",
"chess960",
"crazyhouse",
"antichess",
"atomic",
"horde",
"kingOfTheHill",
"racingKings",
"threeCheck"
],
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}