slack_list_channels
Discover Slack channels using a glob pattern and minimum member count. Optionally include private channels and limit results.
Instructions
Discover channels by glob pattern and minimum member count.
EXPENSIVE: this enumerates conversations.list, which Enterprise Grid throttles hard, so it may return a rate_limited error on large workspaces. If you already know the channel name, skip this and pass the name straight to slack_channel_history — that resolves via one fast search call. For a glob over channels you have joined, slack_channels_history is far cheaper.
Args: pattern: fnmatch glob against the channel name, e.g. 'team-*'. min_members: Only return channels with at least this many members. include_private: Include private channels you have joined. limit: Maximum channels to return (default 200).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| pattern | No | ||
| min_members | No | ||
| include_private | No |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||