manage_channel_permissions
Control channel permissions on TeamSpeak MCP by adding, removing, or listing specific permissions for a channel using the channel ID and desired action.
Instructions
Add or remove specific permissions for a channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform | |
channel_id | Yes | Channel ID to modify permissions for | |
permission | No | Permission name (required for add/remove actions) | |
value | No | Permission value (required for add action) |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"action": {
"description": "Action to perform",
"enum": [
"add",
"remove",
"list"
],
"type": "string"
},
"channel_id": {
"description": "Channel ID to modify permissions for",
"type": "integer"
},
"permission": {
"description": "Permission name (required for add/remove actions)",
"type": "string"
},
"value": {
"description": "Permission value (required for add action)",
"type": "integer"
}
},
"required": [
"channel_id",
"action"
],
"type": "object"
}