Add Note to Issue
add_noteAdd a comment to an existing MantisBT issue. Supports public or private notes with UTF-8 text and Markdown.
Instructions
Add a note (comment) to an existing MantisBT issue. Returns the created note object including id, created_at, reporter, text, view_state, and a view_url linking directly to the note in the MantisBT web UI.
Full UTF-8 text is supported. Markdown syntax is stored as-is — rendering depends on the MantisBT instance's configured text renderer.
Use view_state="private" to restrict the note to users with reporter-level access or higher; public notes are visible to all users who can view the issue.
Prerequisites: obtain issue_id from list_issues, get_issue, or search_issues.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | Numeric issue ID — use list_issues or get_issue to obtain issue IDs | |
| text | Yes | Note text (minimum 1 character). Full UTF-8 including emoji is supported. Markdown is stored as-is. | |
| view_state | No | Visibility of the note: "public" (visible to all, default) or "private" (visible only to users with sufficient access level). | public |