jira_attachment_upload
Attach multiple local files to a JIRA issue by providing the issue key and absolute paths. Files are streamed from disk and uploaded in one request, returning attachment metadata.
Instructions
Upload one or more local files as attachments to a JIRA issue. Provide file_paths as absolute paths on the MCP server's filesystem; each is streamed from disk and rides a single multipart request. Returns YAML metadata (id, filename, mime_type, size, content_url) for each created attachment. Mirrors omni-dev atlassian jira attachment upload.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| key | Yes | JIRA issue key (e.g., `PROJ-123`). | |
| file_paths | Yes | Local filesystem path(s) to the file(s) to upload. Each is streamed from disk (never fully buffered in memory) and rides a single multipart request. |