delete_channel
Remove a TeamSpeak channel by its ID using the TeamSpeak MCP server. Optionally force deletion even if clients are present, ensuring efficient channel management.
Instructions
Delete a channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | Channel ID to delete | |
force | No | Force deletion even if clients are present |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"channel_id": {
"description": "Channel ID to delete",
"type": "integer"
},
"force": {
"default": false,
"description": "Force deletion even if clients are present",
"type": "boolean"
}
},
"required": [
"channel_id"
],
"type": "object"
}