Jira MCP Server

create_issue_link

Create a link between two issues

Input Schema

NameRequiredDescriptionDefault
inwardIssueKeyYesKey of the inward issue (e.g., blocked issue)
linkTypeYesType of link (e.g., 'blocks')
outwardIssueKeyYesKey of the outward issue (e.g., blocking issue)

Input Schema (JSON Schema)

{ "properties": { "inwardIssueKey": { "description": "Key of the inward issue (e.g., blocked issue)", "type": "string" }, "linkType": { "description": "Type of link (e.g., 'blocks')", "type": "string" }, "outwardIssueKey": { "description": "Key of the outward issue (e.g., blocking issue)", "type": "string" } }, "required": [ "inwardIssueKey", "outwardIssueKey", "linkType" ], "type": "object" }