Slack

SLACKBOT_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 slackbot

Other tools also called SLACKBOT_SET_STATUS? See providers with this name

Input Schema


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

Provider

Slack →