search_teams
Find chess teams on Lichess by entering search text and specifying a page number, enabling efficient team discovery and participation in chess activities.
Instructions
Search for teams
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page | No | Page number (starting at 1) | |
text | Yes | Search text |
Input Schema (JSON Schema)
{
"properties": {
"page": {
"default": 1,
"description": "Page number (starting at 1)",
"type": "number"
},
"text": {
"description": "Search text",
"type": "string"
}
},
"required": [
"text"
],
"type": "object"
}