Skip to main content
Server path: /jira | Type: Application | PCID required: Yes Issues, projects, and boards

Tools

ToolDescription
jira_create_issueCreate a new issue in Jira
jira_update_issueUpdate an existing issue in Jira
jira_get_issueGet details of a specific issue by ID or key
jira_search_issuesSearch for issues using JQL (Jira Query Language)
jira_get_projectsGet all projects that the user has permission to view
jira_search_userSearch for users by email address or display name
jira_assign_issueAssign an issue to a user by account ID
jira_add_comment_to_issueAdd a comment to a Jira issue
jira_list_issue_commentsList all comments on a Jira issue
jira_add_attachment_to_issueAdd an attachment to a Jira issue
jira_transition_issueTransition a Jira issue to a different status
jira_get_transitionsGet available transitions for a Jira issue

jira_create_issue

Create a new issue in Jira Parameters:
ParameterTypeRequiredDefaultDescription
projectKeystringYesProject key (e.g., “SUP”)
summarystringYesIssue summary/title
descriptionstringYesIssue description (plain text or markdown)
issueTypestringNo"Task"Issue type (e.g., “Bug”, “Task”, “Story”, “Epic”, “Subtask)

jira_update_issue

Update an existing issue in Jira Parameters:
ParameterTypeRequiredDefaultDescription
issueIdstringYesIssue ID or key to update
summarystringNoUpdated issue summary/title
descriptionstringNoUpdated issue description (plain text or markdown)
assigneestringNoAccount ID of the user to assign to
statusstringNoStatus to set for the issue
prioritystringNoPriority ID as string: “1”=Highest, “2”=High, “3”=Medium, “4”=Low, “5”=Lowest

jira_get_issue

Get details of a specific issue by ID or key Parameters:
ParameterTypeRequiredDefaultDescription
issueIdstringYesIssue ID or key to retrieve

jira_search_issues

Search for issues using JQL (Jira Query Language) Parameters:
ParameterTypeRequiredDefaultDescription
jqlstringNoJQL query string (e.g., “project = PROJ AND priority = High AND created >= -7d”)
startAtnumberNo0Starting index for pagination (default: 0)
maxResultsnumberNo50Maximum number of issues to return (default: 50)
fieldsstring[]NoList of fields to return (e.g., [“summary”, “status”])

jira_get_projects

Get all projects that the user has permission to view

jira_search_user

Search for users by email address or display name Parameters:
ParameterTypeRequiredDefaultDescription
querystringYesSearch query (email address or display name)

jira_assign_issue

Assign an issue to a user by account ID Parameters:
ParameterTypeRequiredDefaultDescription
issueIdOrKeystringYesIssue ID or key to assign
accountIdstringYesAccount ID of the user to assign to

jira_add_comment_to_issue

Add a comment to a Jira issue Parameters:
ParameterTypeRequiredDefaultDescription
issueIdOrKeystringYesIssue ID or key to add comment to
commentstringYesComment text to add to the issue

jira_list_issue_comments

List all comments on a Jira issue Parameters:
ParameterTypeRequiredDefaultDescription
issueIdOrKeystringYesIssue ID or key to list comments for
maxResultsnumberNo50Maximum number of comments to return

jira_add_attachment_to_issue

Add an attachment to a Jira issue Parameters:
ParameterTypeRequiredDefaultDescription
issueIdOrKeystringYesIssue ID or key to add attachment to
fileUrlstringYesURL of the file to attach
filenamestringYesName for the attached file

jira_transition_issue

Transition a Jira issue to a different status Parameters:
ParameterTypeRequiredDefaultDescription
issueIdOrKeystringYesIssue ID or key to transition
transitionIdstringYesID of the transition to perform
commentstringNoOptional comment to add during transition

jira_get_transitions

Get available transitions for a Jira issue Parameters:
ParameterTypeRequiredDefaultDescription
issueIdOrKeystringYesIssue ID or key to get transitions for