jira_attachment_download
Downloads JIRA issue attachments to disk; returns YAML metadata with filename, MIME type, size, and path. Supports filename filtering and custom output directory; defaults to a temp directory.
Instructions
Download attachments on a JIRA issue to disk. Returns YAML metadata (id, filename, mime_type, size, on-disk path) for each downloaded file. If output_dir is omitted, files are written to a fresh temp directory whose path is in the result; the assistant can then read them via the filesystem tool. Mirrors omni-dev atlassian jira attachment download.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | JIRA issue key (e.g., `PROJ-123`). | |
| filter | No | Case-insensitive filename substring filter. | |
| output_dir | No | Output directory. Defaults to a fresh temp directory whose path is returned in the result so the assistant can read the files via its filesystem tool. |