confluence_read
Read a Confluence page by ID as markdown (default) or ADF JSON. For large pages, write to file and get a summary to save context space.
Instructions
Fetch a Confluence page by ID. Returns JFM markdown by default, or raw ADF JSON when format="adf". When output_file is set, the content is written to that path and the tool returns a short YAML summary (path/bytes/format) — useful for large pages. Mirrors omni-dev atlassian confluence read.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format: `"jfm"` (default, AI-friendly markdown) or `"adf"` (raw ADF JSON). | |
| id | Yes | Confluence page ID (e.g., "12345678"). | |
| output_file | No | When set, writes the rendered content to this path and returns a short YAML summary (path/bytes/format) instead of the inline body. Useful for large pages that would otherwise blow past the context window — the assistant can then read the file with offset/limit. |