Slack

SLACKBOT_LIST_ALL_CHANNELS

Lists conversations available to the user with various filters and search options.

Remote slackbot

Other tools also called SLACKBOT_LIST_ALL_CHANNELS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "title": "Limit",
      "default": 1,
      "examples": [
        100,
        500,
        1000
      ],
      "description": "Maximum number of channels to return per page (1 to 1000). Fewer channels may be returned than requested. This schema defaults to 1 if omitted."
    },
    "types": {
      "type": "string",
      "title": "Types",
      "examples": [
        "public_channel,private_channel",
        "im,mpim"
      ],
      "description": "Comma-separated list of channel types to include: `public_channel`, `private_channel`, `mpim` (multi-person direct message), `im` (direct message). The API defaults to `public_channel` if this parameter is omitted."
    },
    "cursor": {
      "type": "string",
      "title": "Cursor",
      "examples": [
        "dXNlcjpVMDYxTkZUVDI=",
        "bmV4dF90czoxNTEyMDg1ODYxMDAwNTQ5"
      ],
      "description": "Pagination cursor (from a previous response's `next_cursor`) for the next page of results. Omit for the first page."
    },
    "channel_name": {
      "type": "string",
      "title": "Channel Name",
      "examples": [
        "general",
        "announcements"
      ],
      "description": "Filter channels by name (case-insensitive substring match). This is a client-side filter applied after fetching from the API."
    },
    "exclude_archived": {
      "type": "boolean",
      "title": "Exclude Archived",
      "examples": [
        true,
        false
      ],
      "description": "Excludes archived channels if true. The API defaults to false (archived channels are included)."
    }
  }
}
          

Provider

Slack →