Jira MCP Server

add_attachment_from_public_url

Add an attachment from a public url to a ticket on Jira on the api /rest/api/3/issue/{issueIdOrKey}/attachments

Input Schema

NameRequiredDescriptionDefault
imageUrlYesThe URL of the image to attach
issueIdOrKeyYesThe issue id or key

Input Schema (JSON Schema)

{ "properties": { "imageUrl": { "description": "The URL of the image to attach", "type": "string" }, "issueIdOrKey": { "description": "The issue id or key", "type": "string" } }, "required": [ "issueIdOrKey", "imageUrl" ], "type": "object" }