mcp-discord

read_messages

Read recent messages from a channel

Input Schema

NameRequiredDescriptionDefault
channel_idYesDiscord channel ID
limitNoNumber of messages to fetch (max 100)

Input Schema (JSON Schema)

{ "properties": { "channel_id": { "description": "Discord channel ID", "type": "string" }, "limit": { "description": "Number of messages to fetch (max 100)", "maximum": 100, "minimum": 1, "type": "number" } }, "required": [ "channel_id" ], "type": "object" }