Create Issue Link
jira_create_issue_linkCreate links between Jira issues to establish relationships like blocking, duplication, or dependencies. Specify link type and issue keys to connect tickets in your workflow.
Instructions
Create a link between two Jira issues.
Args: ctx: The FastMCP context. link_type: The type of link (e.g., 'Blocks'). inward_issue_key: The key of the source issue. outward_issue_key: The key of the target issue. comment: Optional comment text. comment_visibility: Optional JSON string for comment visibility.
Returns: JSON string indicating success or failure.
Raises: ValueError: If required fields are missing, invalid input, in read-only mode, or Jira client unavailable.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| link_type | Yes | The type of link to create (e.g., 'Duplicate', 'Blocks', 'Relates to') | |
| inward_issue_key | Yes | The key of the inward issue (e.g., 'PROJ-123', 'ACV2-642') | |
| outward_issue_key | Yes | The key of the outward issue (e.g., 'PROJ-456') | |
| comment | No | (Optional) Comment to add to the link | |
| comment_visibility | No | (Optional) Visibility settings for the comment as JSON string (e.g. '{"type":"group","value":"jira-users"}') |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |