discord_delete_message
Remove a specific message from a Discord channel by providing the channel ID and message ID using the MCP server's Discord API integration.
Instructions
Delete a message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | The Discord channel ID | |
messageId | Yes | The message ID to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"description": "The Discord channel ID",
"type": "string"
},
"messageId": {
"description": "The message ID to delete",
"type": "string"
}
},
"required": [
"channelId",
"messageId"
],
"type": "object"
}