Update issue
mantis_update_issuePartially update a MantisBT issue by modifying its fields (summary, status, handler, custom fields, etc.) and optionally append a note or preview changes with dry run.
Instructions
Partial update of an issue (PATCH). The "fields" object accepts any of:
summary, description, steps_to_reproduce, additional_information (strings)
status, resolution, priority, severity, reproducibility: { name } (localized or canonical) or { id }
handler: { name: "" } or { id }
category, version, target_version, fixed_in_version, view_state: { name }
custom_fields: [{ field: {id|name}, value: "" }]
When resolving an issue set BOTH status and resolution (or use mantis_resolve_issue). Use "note" to append a comment (e.g. the reason for the change) in the same call. Use dry_run to preview the payload.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Numeric issue id to update. | |
| note | No | Optional note appended after a successful update. | |
| fields | Yes | ||
| dry_run | No | If true, return the patch that would be sent without applying it. | |
| note_private | No | Make the appended note private (default false). |