discord_download_attachment
Download a Discord attachment from a provided CDN URL and return it as an MCP file reference for integration with Claude's Discord MCP Server tools.
Instructions
Download a Discord attachment and return it as MCP file reference
Input Schema
Name | Required | Description | Default |
---|---|---|---|
url | Yes | Discord CDN URL of the attachment to download |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"url": {
"description": "Discord CDN URL of the attachment to download",
"format": "uri",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}