jira_get_attachment_images
Fetch image attachments from a Jira issue as viewable image content, enabling vision-capable AI models to see and describe them directly, bypassing text extraction.
Instructions
Fetch image attachments from a Jira issue as viewable image content.
Returns each image as an MCP image content block so a vision-capable model can see and describe it directly — no MarkItDown text extraction and no MCP sampling required. Works with any client whose own model supports images (e.g., Claude, GPT-4o, Bedrock vision models).
Non-image attachments are ignored; use jira_summarize_attachments for
documents (PDF / DOCX / XLSX / CSV / …).
Args: ctx: The FastMCP context. issue_key: Jira issue key (e.g., 'PROJ-123'). filename_filter: Optional comma-separated list of image filenames to fetch. max_images: Maximum number of images to return (default: 10).
Returns: A ToolResult whose content holds one image block per attachment (each preceded by a text label) and whose structured content lists the image metadata plus any download failures.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_key | Yes | Jira issue key whose image attachments should be fetched (e.g., 'PROJ-123') | |
| max_images | No | Maximum number of images to return (default: 10). | |
| filename_filter | No | (Optional) Comma-separated list of specific image filenames to fetch. When omitted all image attachments on the issue are returned. |