create_channel
Create a new public or private Slack channel by specifying a name and privacy setting. Simplify team collaboration with organized communication spaces directly from the Slack MCP Server.
Instructions
Create a new Slack channel.
Args: name: Name for the new channel is_private: Whether the channel should be private
Input Schema
Name | Required | Description | Default |
---|---|---|---|
is_private | No | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"is_private": {
"default": false,
"title": "Is Private",
"type": "boolean"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}