Get Issue Images
jira_get_issue_imagesRetrieves image attachments from a Jira issue and returns them as base64-encoded inline content for direct rendering by AI vision models.
Instructions
Get all images attached to a Jira issue as inline image content.
Filters attachments to images only (PNG, JPEG, GIF, WebP, SVG, BMP) and returns them as base64-encoded ImageContent that clients can render directly. Non-image attachments are excluded.
Files with ambiguous MIME types (application/octet-stream) are detected by filename extension as a fallback. Images larger than 50 MB are skipped with an error entry in the summary.
Args: ctx: The FastMCP context. issue_key: Jira issue key.
Returns: A list with a text summary followed by one ImageContent per successfully downloaded image.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_key | Yes | Jira issue key (e.g., 'PROJ-123'). Returns image attachments as inline ImageContent for LLM vision. |