messages_get
Fetch a Discord message by its ID to verify or inspect its content before editing. Use when you need details for a single message, not a list.
Instructions
Purpose: Fetch a single Discord message by ID.
When to use:
Inspect a specific message referenced by another tool or by the user.
Verify message exists / read its current content before editing.
When NOT to use:
Reading a window of recent messages → use
messages_read.
Example: {channel_id:"112233445566778899", message_id:"999000999000999000"}
Returns: {message_id, channel_id, author_id, author_name, content, timestamp, edited, pinned}. Structured message fields remain raw Discord data; the human-readable MCP content response fences the message text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | Channel containing the message | |
| message_id | Yes | Message to fetch |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||