Slack

SLACKBOT_FIND_USERS

Find users in a Slack workspace by any criteria - email, name, display name, or other text. Includes optimized email lookup for exact email matches.

Remote slackbot

Other tools also called SLACKBOT_FIND_USERS? 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 users to return (1 to 200). Defaults to 50."
    },
    "exact_match": {
      "type": "boolean",
      "title": "Exact Match",
      "default": false,
      "examples": [
        true,
        false
      ],
      "description": "Use exact matching instead of partial matching. Defaults to false."
    },
    "include_bots": {
      "type": "boolean",
      "title": "Include Bots",
      "default": false,
      "examples": [
        true,
        false
      ],
      "description": "Include bot users in search results. Defaults to false."
    },
    "search_query": {
      "type": "string",
      "title": "Search Query",
      "examples": [
        "john",
        "[email protected]",
        "john doe",
        "smith",
        "@company.com"
      ],
      "description": "Search query to find users. Searches across name, display name, real name, email address, first name, last name, and status text (case-insensitive partial matching). For exact email matches with exact_match=true, uses Slack's efficient email lookup endpoint."
    },
    "include_deleted": {
      "type": "boolean",
      "title": "Include Deleted",
      "default": false,
      "examples": [
        true,
        false
      ],
      "description": "Include deleted/deactivated users in search results. Defaults to false."
    },
    "include_restricted": {
      "type": "boolean",
      "title": "Include Restricted",
      "default": true,
      "examples": [
        true,
        false
      ],
      "description": "Include restricted (guest) users in search results. Defaults to true."
    }
  }
}
          

Provider

Slack →