discord_read_messages
Retrieve messages from a Discord text channel by specifying the channel ID and a message limit. Facilitates efficient message extraction for AI assistants interacting with Discord via the MCP-Discord server.
Instructions
Retrieves messages from a Discord text channel with a configurable limit
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | ||
limit | No |
Input Schema (JSON Schema)
{
"properties": {
"channelId": {
"type": "string"
},
"limit": {
"default": 50,
"maximum": 100,
"minimum": 1,
"type": "number"
}
},
"required": [
"channelId"
],
"type": "object"
}