Jira Tools Documentation
This document lists all available Jira tools and their usage.
Configuration Requirements
To use these tools, you need to configure the following:
- Jira Domain
- Jira Email
- Jira API Token
Get these by going to your Atlassian's API Token page and creating a new API token with scopes.
Enter your token and connection details when setting up the JIRA integration:
Tools
Tool Name | Description | Parameters |
---|---|---|
jira_get_issue |
Get details of a specific Jira issue. | - issueIdOrKey (string): The ID or key of the Jira issue |
jira_create_issue |
Create a new Jira issue. | - projectKey (string): The project key in Jira (e.g., PROJ)- summary (string): A short summary of the issue- description (string): A detailed description of the issue- issueType (string): The type of the issue (e.g., Bug, Task)- parent (string, optional): Parent ticket ID (e.g., PROJ-123) |
jira_get_child_issues |
Get all child issues from a parent ticket. | - parentIssueKey (string): The key of the parent issue (e.g., PROJ-123) |
jira_add_comment |
Add a comment to a Jira ticket and optionally mention users. | - issueIdOrKey (string): The ID or key of the Jira issue to comment on- comment (string): The text of the comment to add- mentionAccountIds (string[], optional): List of Atlassian accountIds to mention at the start of the comment |
jira_update_issue_status |
Update the status of a Jira ticket by performing a transition. | - issueIdOrKey (string): The ID or key of the Jira issue to update- transitionId (string): The ID of the transition to perform (corresponds to the desired status) |
jira_get_available_transitions |
Get all possible transitions for a Jira issue. | - issueIdOrKey (string): The ID or key of the Jira issue to get transitions for |
jira_link_issue |
Link two Jira issues using a specified link type and direction. | - sourceIssueKey (string): The key of the source Jira issue (e.g., PROJ-123)- destinationIssueKey (string): The key of the destination Jira issue (e.g., PROJ-456)- linkType (string): The type of link (e.g., 'Blocks')- direction (enum): Direction of the link: 'outward' (source affects destination) or 'inward' (destination affects source) |
jira_get_link_types |
Get all available issue link types in Jira. | None |