Slack

SLACK_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 slack

Other tools also called SLACK_FIND_USERS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "limit": {
      "type": "integer",
      "default": 50,
      "description": "Maximum number of users to return (1 to 200). Defaults to 50.\nExamples:\n  10\n  25\n  100"
    },
    "exact_match": {
      "type": "boolean",
      "default": false,
      "description": "Use exact matching instead of partial matching. Defaults to false.\nExamples:\n  true\n  false"
    },
    "include_bots": {
      "type": "boolean",
      "default": false,
      "description": "Include bot users in search results. Defaults to false.\nExamples:\n  true\n  false"
    },
    "search_query": {
      "type": "string",
      "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.\nExamples:\n  \"john\"\n  \"[email protected]\"\n  \"john doe\"\n  \"smith\"\n  \"@company.com\""
    },
    "include_deleted": {
      "type": "boolean",
      "default": false,
      "description": "Include deleted/deactivated users in search results. Defaults to false.\nExamples:\n  true\n  false"
    },
    "include_restricted": {
      "type": "boolean",
      "default": true,
      "description": "Include restricted (guest) users in search results. Defaults to true.\nExamples:\n  true\n  false"
    }
  }
}
          

Provider

Slack →