send_channel_message
Send a message to a TeamSpeak channel by specifying the channel ID and content. Simplify communication within TeamSpeak servers with this MCP tool.
Instructions
Send a message to a TeamSpeak channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | No | Channel ID (optional, uses current channel if not specified) | |
message | Yes | Message to send |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"channel_id": {
"description": "Channel ID (optional, uses current channel if not specified)",
"type": "integer"
},
"message": {
"description": "Message to send",
"type": "string"
}
},
"required": [
"message"
],
"type": "object"
}