kick_client
Remove a user from a server or channel on TeamSpeak by specifying the client ID and optional reason. Choose to expel from the entire server or just the current channel.
Instructions
Kick a client from server or channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | Yes | Client ID | |
from_server | No | Kick from server (true) or channel (false) | |
reason | No | Kick reason | Expelled by AI |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"client_id": {
"description": "Client ID",
"type": "integer"
},
"from_server": {
"default": false,
"description": "Kick from server (true) or channel (false)",
"type": "boolean"
},
"reason": {
"default": "Expelled by AI",
"description": "Kick reason",
"type": "string"
}
},
"required": [
"client_id"
],
"type": "object"
}