Skip to main content
FuseFuse
IntegrationsSlackActions

Create Slack channel

Create a public or private Slack channel.

Agent markdown

channels.create · Slack · v1

Details

Risk
Write
Idempotency
Unsafe
Availability
Default
Exposure
REST, SDK, MCP
MCP hints
readOnly=false, destructive=false, idempotent=false, openWorld=true

Scopes

  • channels:manage
  • groups:write

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
namestringYesminLength 1; maxLength 80; pattern ^[a-z0-9_-]+$
is_privatebooleanNo

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
idstringYes
namestringYes
is_privatebooleanNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 80,
      "pattern": "^[a-z0-9_-]+$"
    },
    "is_private": {
      "type": "boolean"
    }
  },
  "required": [
    "name"
  ]
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "id": {
      "type": "string"
    },
    "name": {
      "type": "string"
    },
    "is_private": {
      "type": "boolean"
    }
  },
  "required": [
    "id",
    "name"
  ]
}