Move Issue to Project
jira_move_issueTransfer a Jira issue to a different project while preserving its issue type. The issue receives a new key in the target project.
Instructions
Move a Jira issue to a different project (Jira Cloud only).
Uses Jira Cloud's bulk move API to perform a cross-project move. The issue keeps its current issue type and may be assigned a new key in the target project (e.g., OLDPROJ-123 becomes NEWPROJ-456).
The move is processed asynchronously on Jira's side; this tool polls until confirmed or times out after 30 seconds.
Args: ctx: The FastMCP context. issue_key: Jira issue key of the issue to move. target_project_key: Key of the target project.
Returns: JSON string representing the moved issue with its new key and project.
Raises: ValueError: If in read-only mode, Jira client unavailable, or the move fails. NotImplementedError: If not running on Jira Cloud.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_key | Yes | Jira issue key to move (e.g., 'PROJ-123') | |
| target_project_key | Yes | Key of the target project (e.g., 'OTHERPROJ'). The issue will keep its current issue type and may receive a new key in the target project. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |