create_channel
Create new Slack channels for team communication and collaboration by specifying channel names and privacy settings.
Instructions
Create a new channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_private | No | Create as private channel | |
name | Yes | Channel name (lowercase, no spaces) |
Input Schema (JSON Schema)
{
"properties": {
"is_private": {
"default": false,
"description": "Create as private channel",
"type": "boolean"
},
"name": {
"description": "Channel name (lowercase, no spaces)",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}