Slack

SLACK_FIND_CHANNELS

Find channels in a Slack workspace by any criteria - name, topic, purpose, or description.

Remote slack

Other tools also called SLACK_FIND_CHANNELS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "default": 50,
      "description": "Maximum number of channels to return (1 to 200). Defaults to 50.\nExamples:\n  10\n  25\n  100"
    },
    "types": {
      "type": "string",
      "default": "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.\nExamples:\n  \"public_channel\"\n  \"private_channel\"\n  \"public_channel,private_channel\""
    },
    "exact_match": {
      "type": "boolean",
      "default": false,
      "description": "Use exact matching instead of partial matching. Defaults to false.\nExamples:\n  true\n  false"
    },
    "member_only": {
      "type": "boolean",
      "default": false,
      "description": "Only return channels the user is a member of. Defaults to false.\nExamples:\n  true\n  false"
    },
    "search_query": {
      "type": "string",
      "description": "Search query to find channels. Searches across channel name, topic, purpose, and description (case-insensitive partial matching).\nExamples:\n  \"general\"\n  \"marketing\"\n  \"dev\"\n  \"announcements\"\n  \"project\""
    },
    "exclude_archived": {
      "type": "boolean",
      "default": true,
      "description": "Exclude archived channels from search results. Defaults to true.\nExamples:\n  true\n  false"
    }
  }
}
          

Provider

Slack →