mcp-discord
by hanweg
read_messages
Read recent messages from a channel
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channel_id | Yes | Discord channel ID | |
limit | No | Number 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"
}