Slack
SLACKBOT_SHARE_A_ME_MESSAGE_IN_A_CHANNEL
Sends a 'me message' (e.g., '/me is typing') to a Slack channel, where it's displayed as a third-person user action; messages are plain text and the channel must exist and be accessible.
Remote slackbot
Other tools also called SLACKBOT_SHARE_A_ME_MESSAGE_IN_A_CHANNEL?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"text": {
"type": "string",
"title": "Text",
"examples": [
"is preparing for a meeting.",
"updated the project status.",
"needs coffee."
],
"description": "Content of the 'me message', displayed as an action performed by the user (e.g., if text is 'is feeling happy', it appears as '*User is feeling happy*')."
},
"channel": {
"type": "string",
"title": "Channel",
"examples": [
"C1234567890",
"#random",
"D012345678"
],
"description": "Specifies the target channel by its public ID (e.g., 'C1234567890'), private group ID, IM channel ID, or name (e.g., '#general', '@username')."
}
}
}