kick_user_from_team
Remove a specific user from your team on Lichess by providing the team ID and user ID through the Lichess MCP server, ensuring effective team management.
Instructions
Kick a user from your team
Input Schema
Name | Required | Description | Default |
---|---|---|---|
teamId | Yes | The team ID | |
userId | Yes | The user ID |
Input Schema (JSON Schema)
{
"properties": {
"teamId": {
"description": "The team ID",
"type": "string"
},
"userId": {
"description": "The user ID",
"type": "string"
}
},
"required": [
"teamId",
"userId"
],
"type": "object"
}