mcp-discord
by hanweg
remove_reaction
Remove a reaction from a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | Channel containing the message | |
emoji | Yes | Emoji to remove (Unicode or custom emoji ID) | |
message_id | Yes | Message to remove reaction from |
Input Schema (JSON Schema)
{
"properties": {
"channel_id": {
"description": "Channel containing the message",
"type": "string"
},
"emoji": {
"description": "Emoji to remove (Unicode or custom emoji ID)",
"type": "string"
},
"message_id": {
"description": "Message to remove reaction from",
"type": "string"
}
},
"required": [
"channel_id",
"message_id",
"emoji"
],
"type": "object"
}