Jira MCP Server

add_attachment_from_confluence

Add an attachment to a ticket on Jira from a Confluence page by its name on the api /rest/api/3/issue/{issueIdOrKey}/attachments

Input Schema

NameRequiredDescriptionDefault
attachmentNameYesThe name of the attachment
issueIdOrKeyYesThe issue id or key
pageIdYesThe page id

Input Schema (JSON Schema)

{ "properties": { "attachmentName": { "description": "The name of the attachment", "type": "string" }, "issueIdOrKey": { "description": "The issue id or key", "type": "string" }, "pageId": { "description": "The page id", "type": "string" } }, "required": [ "issueIdOrKey", "pageId", "attachmentName" ], "type": "object" }