MCP Redmine

redmine_download

Download an attachment from Redmine and save it to a local file

Args: attachment_id: The ID of the attachment to download save_path: Fully qualified path where the file should be saved to filename: Optional filename to use for the attachment. If not provided, will be determined from attachment data or URL

Returns: str: YAML string containing download status, file path, and any error messages

Input Schema

NameRequiredDescriptionDefault
attachment_idYes
filenameNo
save_pathYes

Input Schema (JSON Schema)

{ "properties": { "attachment_id": { "title": "Attachment Id", "type": "integer" }, "filename": { "default": null, "title": "Filename", "type": "string" }, "save_path": { "title": "Save Path", "type": "string" } }, "required": [ "attachment_id", "save_path" ], "title": "redmine_downloadArguments", "type": "object" }