discord_get_message
Retrieve specific Discord messages by ID, including full attachment details, for precise channel and message management within Discord MCP Server's comprehensive bot and server operations.
Instructions
Get a specific message by ID with full attachment details
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | The Discord channel ID | |
messageId | Yes | The message ID to retrieve |
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 retrieve",
"type": "string"
}
},
"required": [
"channelId",
"messageId"
],
"type": "object"
}