discord_add_reaction
Add custom or Unicode emoji reactions to messages in Discord channels using channel and message IDs. Simplifies bot interaction for enhanced Discord server management.
Instructions
Add a reaction to a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | The Discord channel ID | |
emoji | Yes | Emoji to react with (Unicode or custom emoji format) | |
messageId | Yes | The message ID to react to |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"description": "The Discord channel ID",
"type": "string"
},
"emoji": {
"description": "Emoji to react with (Unicode or custom emoji format)",
"type": "string"
},
"messageId": {
"description": "The message ID to react to",
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"emoji"
],
"type": "object"
}