discord_get_messages_advanced
Retrieve Discord messages with filtering options including date ranges, keyword searches, pagination, author selection, and attachment filtering for targeted data extraction.
Instructions
Advanced message retrieval with date range, keyword search, and pagination
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| channel_id | Yes | Discord channel ID | |
| limit | No | Number of messages per page (default: 50, max: 100) | |
| before | No | Get messages before this message ID (for pagination) | |
| after | No | Get messages after this message ID (for pagination) | |
| start_date | No | Start date in ISO format (e.g., 2024-01-01T00:00:00Z) | |
| end_date | No | End date in ISO format (e.g., 2024-12-31T23:59:59Z) | |
| keyword | No | Keyword to search in message content | |
| author | No | Filter by author username or ID | |
| has_attachments | No | Only get messages with attachments |