redmine_add_comment
Add a journal comment to a Redmine issue with Markdown content and optional private flag.
Instructions
Append a comment (journal entry) to an existing issue.
Args:
issue_id: numeric Redmine issue id.
note: comment body. Empty/whitespace-only notes are rejected
client-side. Use actual newline characters for multi-line
notes, not backslash-n escape sequences (literal \n
gets stored as visible text, not a line break). Redmine
renders notes as Markdown — headings, bold, tables, and
lists all work when separated by blank lines.
private: if True, mark as a private journal (visible only to
users with the view_private_notes Redmine permission).
Honors REDMINE_MCP_READ_ONLY. Direct PUT — no pre-fetch, no
workflow check (comments don't change status).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| note | Yes | ||
| private | No | ||
| issue_id | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |