discord_remove_reaction
Remove a specific reaction from a Discord message by specifying the channel, message ID, emoji, and user. Manage reactions efficiently using this Discord MCP Server tool.
Instructions
Remove a reaction from a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | The Discord channel ID | |
emoji | Yes | Emoji to remove (Unicode or custom emoji format) | |
messageId | Yes | The message ID to remove reaction from | |
userId | No | User ID to remove reaction from (defaults to self) |
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 remove (Unicode or custom emoji format)",
"type": "string"
},
"messageId": {
"description": "The message ID to remove reaction from",
"type": "string"
},
"userId": {
"description": "User ID to remove reaction from (defaults to self)",
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"emoji"
],
"type": "object"
}