Slack
SLACK_CREATE_CHANNEL_BASED_CONVERSATION
Creates a new public or private Slack channel with a unique name; the channel can be org-wide, or team-specific if `team_id` is given (required if `org_wide` is false or not provided).
Remote slack
Other tools also called SLACK_CREATE_CHANNEL_BASED_CONVERSATION?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name for the new channel. Must be unique, 80 characters or fewer, lowercase, without spaces or periods, and may contain letters, numbers, and hyphens.\nExamples:\n \"project-alpha\"\n \"marketing-campaign-q3\"\n \"team-devs-internal\""
},
"team_id": {
"type": "string",
"description": "Workspace (team) ID for channel creation (e.g., T123ABCDEFG). Required if `org_wide` is `false` or not set.\nExample: \"T123ABCDEFG\""
},
"org_wide": {
"type": "boolean",
"description": "Set to `true` to make the channel available org-wide. If `false` or not set, `team_id` is required."
},
"is_private": {
"type": "boolean",
"description": "Set to `true` to make the channel private, or `false` for public."
},
"description": {
"type": "string",
"description": "Optional description for the channel (e.g., 'Discussion about Q4 marketing strategies')."
}
}
}