create_channel
Create a new channel on a TeamSpeak server by specifying the channel name, parent ID (optional), and permanence. Simplify server management through structured commands with the MCP server.
Instructions
Create a new channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Channel name | |
parent_id | No | Parent channel ID (optional) | |
permanent | No | Permanent or temporary channel (default: temporary) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"name": {
"description": "Channel name",
"type": "string"
},
"parent_id": {
"description": "Parent channel ID (optional)",
"type": "integer"
},
"permanent": {
"default": false,
"description": "Permanent or temporary channel (default: temporary)",
"type": "boolean"
}
},
"required": [
"name"
],
"type": "object"
}