slack_list_channels
Retrieve a list of public and private Slack channels that the bot can access, with pagination support for large workspaces.
Instructions
List public and private channels that the bot is a member of, or pre-defined channels in the workspace with pagination
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cursor | No | Pagination cursor for next page of results | |
limit | No | Maximum number of channels to return (default 100, max 200) |
Input Schema (JSON Schema)
{
"properties": {
"cursor": {
"description": "Pagination cursor for next page of results",
"type": "string"
},
"limit": {
"default": 100,
"description": "Maximum number of channels to return (default 100, max 200)",
"type": "number"
}
},
"type": "object"
}