Upload Redmine Attachment
redmine_upload_attachmentAttach files or images to Redmine issues using a local file path or base64-encoded content, with optional notes and captions. Adds attachment history to the issue automatically.
Instructions
Attach a file or image to a Redmine issue.
Give exactly one source:
file_path: absolute path to a file on the machine running this server
content_b64: the file's bytes as base64 (needs filename)
Args:
issue_id: Issue to attach to (required)
file_path / content_b64: The file (exactly one, required)
filename: Name shown in Redmine. Required with content_b64; defaults to the basename of file_path
description: Optional caption for the attachment
notes: Optional comment to post alongside it
Attaching adds an entry to the issue history, so there is no need to call redmine_add_note separately. Redmine enforces its own maximum file size and reports the limit if the file is too big.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| notes | No | Comment to post with the attachment | |
| filename | No | Name shown in Redmine | |
| issue_id | Yes | Issue ID to attach to | |
| file_path | No | Absolute path to a local file | |
| content_b64 | No | File bytes as base64 | |
| description | No | Attachment description |