discord_add_reaction
React to a specific Discord message with an emoji by providing the channel ID, message ID, and emoji identifier. Simplifies emoji interaction in Discord via MCP-Discord server.
Instructions
Adds an emoji reaction to a specific Discord message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | ||
emoji | Yes | ||
messageId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"type": "string"
},
"emoji": {
"type": "string"
},
"messageId": {
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"emoji"
],
"type": "object"
}