Skip to main content
FuseFuse
IntegrationsSlackActions

List Slack channels

List public and private channels.

Agent markdown

channels.list · Slack · v1

Details

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

Scopes

  • channels:read
  • groups:read

Input

Input schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
cursorstringNominLength 1; maxLength 512

Output

Output schema
NameTypeRequiredConstraints
(root)objectYesadditionalProperties false
channelsarray<object>Yes
channels[]objectYesadditionalProperties false
channels[].idstringYes
channels[].namestringYes
channels[].is_privatebooleanNo
next_cursorstringNo

Raw schema

Input
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "cursor": {
      "type": "string",
      "minLength": 1,
      "maxLength": 512
    }
  }
}
Output
{
  "type": "object",
  "additionalProperties": false,
  "properties": {
    "channels": {
      "type": "array",
      "items": {
        "type": "object",
        "additionalProperties": false,
        "properties": {
          "id": {
            "type": "string"
          },
          "name": {
            "type": "string"
          },
          "is_private": {
            "type": "boolean"
          }
        },
        "required": [
          "id",
          "name"
        ]
      }
    },
    "next_cursor": {
      "type": "string"
    }
  },
  "required": [
    "channels"
  ]
}