Skip to main content
Glama
cappyeo

discord-mcp

messages_get

Read-onlyIdempotent

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

TableJSON Schema
NameRequiredDescriptionDefault
channel_idYesChannel containing the message
message_idYesMessage to fetch

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true and idempotentHint=true, so the safety profile is covered. The description adds valuable context about the return shape (field list) and the raw Discord data vs. human-readable MCP content distinction, which is beyond what annotations provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Well-structured with bold headers, concise bullets, a concrete example, and a compact returns list. Every sentence serves a purpose; no filler or redundant repetition of schema details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (2 required params, read-only, output schema present). The description covers purpose, usage criteria, when not to use, an example, and expected return fields. Combined with annotations and schema, nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with both params described ('Channel containing the message', 'Message to fetch'). The description's example is illustrative but adds no new semantic meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb+resource: 'Fetch a single Discord message by ID.' It clearly distinguishes from sibling messages_read (which reads windows of messages) by the word 'single' and explicit scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit 'When to use' and 'When NOT to use' sections, including a named alternative: 'use messages_read' for windows of recent messages. This is precise guidance with no ambiguity.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/cappyeo/discord-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server