poke_client
Send direct alert notifications to TeamSpeak clients using this tool. It enables users to grab attention effectively by poking a specific client with a custom message, ensuring important communications stand out.
Instructions
Send a poke (alert notification) to a client - more attention-grabbing than a private message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
client_id | Yes | Target client ID to poke | |
message | Yes | Poke message to send |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"client_id": {
"description": "Target client ID to poke",
"type": "integer"
},
"message": {
"description": "Poke message to send",
"type": "string"
}
},
"required": [
"client_id",
"message"
],
"type": "object"
}