list_channels
Retrieve available channels from your Slack workspace, filtering by channel types and excluding archived channels to organize workspace navigation.
Instructions
List channels in the Slack workspace
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| exclude_archived | No | Exclude archived channels | |
| limit | No | Maximum number of channels to return | |
| types | No | Comma-separated list of channel types (public_channel, private_channel, mpim, im) | public_channel,private_channel |
Input Schema (JSON Schema)
{
"properties": {
"exclude_archived": {
"default": true,
"description": "Exclude archived channels",
"type": "boolean"
},
"limit": {
"default": 100,
"description": "Maximum number of channels to return",
"maximum": 1000,
"minimum": 1,
"type": "number"
},
"types": {
"default": "public_channel,private_channel",
"description": "Comma-separated list of channel types (public_channel, private_channel, mpim, im)",
"type": "string"
}
},
"type": "object"
}