Skip to main content
Get all available issue link types. Parameters:
ParameterTypeRequiredDescription
name_filterstringNo(Optional) Filter link types by name substring (case-insensitive)

Create a link between two Jira issues.
This is a write tool. Disabled when READ_ONLY_MODE=true.
Parameters:
ParameterTypeRequiredDescription
link_typestringYesThe type of link to create (e.g., ‘Duplicate’, ‘Blocks’, ‘Relates to’)
inward_issue_keystringYesThe key of the inward issue (e.g., ‘PROJ-123’, ‘ACV2-642’)
outward_issue_keystringYesThe key of the outward issue (e.g., ‘PROJ-456’)
commentstringNo(Optional) Comment to add to the link
comment_visibilitystringNo(Optional) Visibility settings for the comment as JSON string (e.g. '{"type":"group","value":"jira-users"}')

Remove a link between two Jira issues.
This is a write tool. Disabled when READ_ONLY_MODE=true.
Parameters:
ParameterTypeRequiredDescription
link_idstringYesThe ID of the link to remove

Link an existing issue to an epic.
This is a write tool. Disabled when READ_ONLY_MODE=true.
Parameters:
ParameterTypeRequiredDescription
issue_keystringYesThe key of the issue to link (e.g., ‘PROJ-123’, ‘ACV2-642’)
epic_keystringYesThe key of the epic to link to (e.g., ‘PROJ-456’)

Create a remote issue link (web link or Confluence link) for a Jira issue.
This is a write tool. Disabled when READ_ONLY_MODE=true.
Parameters:
ParameterTypeRequiredDescription
issue_keystringYesThe key of the issue to add the link to (e.g., ‘PROJ-123’, ‘ACV2-642’)
urlstringYesThe URL to link to (e.g., ‘https://example.com/page’ or Confluence page URL)
titlestringYesThe title/name of the link (e.g., ‘Documentation Page’, ‘Confluence Page’)
summarystringNo(Optional) Description of the link
relationshipstringNo(Optional) Relationship description (e.g., ‘causes’, ‘relates to’, ‘documentation’)
icon_urlstringNo(Optional) URL to a 16x16 icon for the link

Get Project Versions

Get all fix versions for a specific Jira project. Parameters:
ParameterTypeRequiredDescription
project_keystringYesJira project key (e.g., ‘PROJ’, ‘ACV2’)

Get Project Components

Get all components for a specific Jira project. Parameters:
ParameterTypeRequiredDescription
project_keystringYesJira project key (e.g., ‘PROJ’, ‘ACV2’)

Create Version

Create a new fix version in a Jira project.
This is a write tool. Disabled when READ_ONLY_MODE=true.
Parameters:
ParameterTypeRequiredDescription
project_keystringYesJira project key (e.g., ‘PROJ’, ‘ACV2’)
namestringYesName of the version
start_datestringNoStart date (YYYY-MM-DD)
release_datestringNoRelease date (YYYY-MM-DD)
descriptionstringNoDescription of the version

Batch Create Versions

Batch create multiple versions in a Jira project.
This is a write tool. Disabled when READ_ONLY_MODE=true.
Parameters:
ParameterTypeRequiredDescription
project_keystringYesJira project key (e.g., ‘PROJ’, ‘ACV2’)
versionsstringYesJSON array of version objects. Each object should contain: - name (required): Name of the version - startDate (optional): Start date (YYYY-MM-DD) - releaseDate (optional): Release date (YYYY-MM-DD) - description (optional): Description of the version Example: [{"name": "v1.0", "startDate": "2025-01-01", "releaseDate": "2025-02-01", "description": "First release"}, {"name": "v2.0"}]