jira_create_remote_issue_link
Add web links or Confluence links to Jira issues, making external resources accessible from the issue's Links section.
Instructions
Create a remote issue link (web link or Confluence link) for a Jira issue.
This tool allows you to add web links and Confluence links to Jira issues. The links will appear in the issue's "Links" section and can be clicked to navigate to external resources.
Args: ctx: The FastMCP context. issue_key: The key of the issue to add the link to. url: The URL to link to (can be any web page or Confluence page). title: The title/name that will be displayed for the link. summary: Optional description of what the link is for. relationship: Optional relationship description. icon_url: Optional URL to a 16x16 icon for the link.
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 |
|---|---|---|---|
| url | Yes | The URL to link to (e.g., 'https://example.com/page' or Confluence page URL) | |
| title | Yes | The title/name of the link (e.g., 'Documentation Page', 'Confluence Page') | |
| summary | No | (Optional) Description of the link | |
| icon_url | No | (Optional) URL to a 16x16 icon for the link | |
| issue_key | Yes | The key of the issue to add the link to (e.g., 'PROJ-123') | |
| relationship | No | (Optional) Relationship description (e.g., 'causes', 'relates to', 'documentation') |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |