discord_add_multiple_reactions
Enable adding multiple emoji reactions to a Discord message in one step by specifying the channel ID, message ID, and desired emojis through the MCP-Discord server.
Instructions
Adds multiple emoji reactions to a Discord message at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | ||
emojis | Yes | ||
messageId | Yes |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"type": "string"
},
"emojis": {
"items": {
"type": "string"
},
"type": "array"
},
"messageId": {
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"emojis"
],
"type": "object"
}