discord_get_message
Retrieve a specific Discord message by its ID, including full attachment details, using the channel and message identifiers for precise message access within Discord MCP Server.
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"
}