discord_list_attachments
Scan a Discord channel to list all message attachments, with options to filter by file type, size, and message count. Simplify retrieving shared files in Discord conversations.
Instructions
List all attachments in a Discord channel from recent messages
Input Schema
Name | Required | Description | Default |
---|---|---|---|
channelId | Yes | The Discord channel ID | |
imageOnly | No | Only show image attachments | |
limit | No | Number of messages to scan for attachments (default: 50) | |
maxSize | No | Maximum file size in KB | |
minSize | No | Minimum file size in KB |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"channelId": {
"description": "The Discord channel ID",
"type": "string"
},
"imageOnly": {
"description": "Only show image attachments",
"type": "boolean"
},
"limit": {
"description": "Number of messages to scan for attachments (default: 50)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"maxSize": {
"description": "Maximum file size in KB",
"type": "number"
},
"minSize": {
"description": "Minimum file size in KB",
"type": "number"
}
},
"required": [
"channelId"
],
"type": "object"
}