Get Page Images
confluence_get_page_imagesExtract and display images from Confluence pages by retrieving PNG, JPEG, GIF, WebP, SVG, and BMP attachments as base64-encoded content for direct rendering.
Instructions
Get all images attached to a Confluence page 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. content_id: The ID of the content.
Returns: A list with a text summary followed by one ImageContent per successfully downloaded image.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| content_id | Yes | The ID of the Confluence page or blog post to retrieve images from. Example: '123456789' |