Slack
SLACKBOT_FIND_CHANNELS
Find channels in a Slack workspace by any criteria - name, topic, purpose, or description.
Remote slackbot
Other tools also called SLACKBOT_FIND_CHANNELS?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"limit": {
"type": "integer",
"title": "Limit",
"default": 50,
"examples": [
10,
25,
100
],
"description": "Maximum number of channels to return (1 to 200). Defaults to 50."
},
"types": {
"type": "string",
"title": "Types",
"default": "public_channel,private_channel",
"examples": [
"public_channel",
"private_channel",
"public_channel,private_channel"
],
"description": "Comma-separated list of channel types to include: `public_channel`, `private_channel`, `mpim` (multi-person direct message), `im` (direct message). Defaults to public and private channels."
},
"exact_match": {
"type": "boolean",
"title": "Exact Match",
"default": false,
"examples": [
true,
false
],
"description": "Use exact matching instead of partial matching. Defaults to false."
},
"member_only": {
"type": "boolean",
"title": "Member Only",
"default": false,
"examples": [
true,
false
],
"description": "Only return channels the user is a member of. Defaults to false."
},
"search_query": {
"type": "string",
"title": "Search Query",
"examples": [
"general",
"marketing",
"dev",
"announcements",
"project"
],
"description": "Search query to find channels. Searches across channel name, topic, purpose, and description (case-insensitive partial matching)."
},
"exclude_archived": {
"type": "boolean",
"title": "Exclude Archived",
"default": true,
"examples": [
true,
false
],
"description": "Exclude archived channels from search results. Defaults to true."
}
}
}