channels_list
Retrieve and sort a list of Slack channels by type and popularity using this tool, designed for Slack MCP integration without requiring admin permissions or bot setups.
Instructions
Get list of channels
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_types | Yes | Possible channel types. Allowed values: 'mpim', 'im', 'public_channel', 'private_channel'. | |
| sort | No | Type of sorting. Allowed values: 'popularity' - sort by number of members/participants in each channel. |
Input Schema (JSON Schema)
{
"properties": {
"channel_types": {
"description": "Possible channel types. Allowed values: 'mpim', 'im', 'public_channel', 'private_channel'.",
"items": {
"type": "string"
},
"type": "array"
},
"sort": {
"description": "Type of sorting. Allowed values: 'popularity' - sort by number of members/participants in each channel.",
"type": "string"
}
},
"required": [
"channel_types"
],
"type": "object"
}