Slack

SLACK_SET_STATUS

Sets the Slack status for the authenticated user with a custom text and optional emoji. The status appears next to the user's name in Slack.

Remote slack

Other tools also called SLACK_SET_STATUS? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "status_text": {
      "type": "string",
      "maxLength": 100,
      "description": "The status text to set (e.g., 'In a meeting', 'Out for lunch', 'Working remotely'). Maximum 100 characters.\nExamples:\n  \"In a meeting\"\n  \"AFK\"\n  \"Out for lunch\"\n  \"Focusing 🎯\""
    },
    "status_emoji": {
      "type": [
        "string",
        "null"
      ],
      "default": null,
      "description": "Optional emoji to display with the status (e.g., ':coffee:', ':calendar:', ':house:'). Must be in :emoji_name: format.\nExamples:\n  \":coffee:\"\n  \":calendar:\"\n  \":house:\"\n  \":computer:\""
    },
    "status_expiration": {
      "anyOf": [
        {
          "type": "integer"
        },
        {
          "type": "null"
        }
      ],
      "default": null,
      "description": "Optional Unix timestamp (in seconds) when the status should expire and be automatically cleared. If not provided, status persists until manually cleared.\nExamples:\n  1640995200\n  1672531200"
    }
  }
}
          

Provider

Slack →