confluence_attachment_upload
Upload a local file as an attachment to a Confluence page with optional filename, comment, and minor edit settings.
Instructions
Upload a local file as an attachment to a Confluence page. file_path is a path on the MCP server's filesystem (the file is streamed from disk, never fully buffered). Optional filename overrides the stored name; comment is recorded as a version note; minor_edit (default false) marks the upload as minor. Returns YAML describing the new attachment. Mirrors omni-dev atlassian confluence attachment upload.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| comment | No | Optional version comment recorded with the upload. | |
| file_path | Yes | Local filesystem path to the file to upload. Streamed from disk (never fully buffered in memory). | |
| filename | No | Override the filename used in Confluence (defaults to the local basename). | |
| minor_edit | No | Marks the upload as a minor edit. Defaults to false. | |
| page_id | Yes | Confluence page ID to attach the file to. |