discord_edit_message
Edit existing Discord messages by specifying the channel ID, message ID, and new content to update the message directly via Discord's API.
Instructions
Edit a previously sent message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | The Discord channel ID | |
content | Yes | New message content | |
messageId | Yes | The message ID to edit |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"description": "The Discord channel ID",
"type": "string"
},
"content": {
"description": "New message content",
"maxLength": 2000,
"type": "string"
},
"messageId": {
"description": "The message ID to edit",
"type": "string"
}
},
"required": [
"channelId",
"messageId",
"content"
],
"type": "object"
}