jira_read
Fetch a JIRA issue, returning JFM markdown (default) or raw ADF JSON. Optionally write to a file for large issues to manage context window limits.
Instructions
Fetch a JIRA issue. Returns JFM markdown (default, AI-friendly) 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 issues.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| format | No | Output format — `jfm` (default) returns JFM markdown with YAML frontmatter; `adf` returns the raw ADF description payload as JSON. | |
| key | Yes | JIRA issue key (e.g., `PROJ-123`). | |
| 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 issues that would otherwise blow past the context window — the assistant can then read the file with offset/limit. |