/jira | Type: Application | PCID required: Yes
Issues, projects, and boards
Tools
| Tool | Description |
|---|---|
jira_create_issue | Create a new issue in Jira |
jira_update_issue | Update an existing issue in Jira |
jira_get_issue | Get details of a specific issue by ID or key |
jira_search_issues | Search for issues using JQL (Jira Query Language) |
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 |
jira_assign_issue | Assign an issue to a user by account ID |
jira_add_comment_to_issue | Add a comment to a Jira issue |
jira_list_issue_comments | List all comments on a Jira issue |
jira_add_attachment_to_issue | Add an attachment to a Jira issue |
jira_transition_issue | Transition a Jira issue to a different status |
jira_get_transitions | Get available transitions for a Jira issue |
jira_create_issue
Create a new issue in Jira Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
projectKey | string | Yes | — | Project key (e.g., “SUP”) |
summary | string | Yes | — | Issue summary/title |
description | string | Yes | — | Issue description (plain text or markdown) |
issueType | string | No | "Task" | Issue type (e.g., “Bug”, “Task”, “Story”, “Epic”, “Subtask) |
jira_update_issue
Update an existing issue in Jira Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
issueId | string | Yes | — | Issue ID or key to update |
summary | string | No | — | Updated issue summary/title |
description | string | No | — | Updated issue description (plain text or markdown) |
assignee | string | No | — | Account ID of the user to assign to |
status | string | No | — | Status to set for the issue |
priority | string | No | — | Priority 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:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
issueId | string | Yes | — | Issue ID or key to retrieve |
jira_search_issues
Search for issues using JQL (Jira Query Language) Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
jql | string | No | — | JQL query string (e.g., “project = PROJ AND priority = High AND created >= -7d”) |
startAt | number | No | 0 | Starting index for pagination (default: 0) |
maxResults | number | No | 50 | Maximum number of issues to return (default: 50) |
fields | string[] | No | — | List of fields to return (e.g., [“summary”, “status”]) |
jira_get_projects
Get all projects that the user has permission to viewjira_search_user
Search for users by email address or display name Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query | string | Yes | — | Search query (email address or display name) |
jira_assign_issue
Assign an issue to a user by account ID Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
issueIdOrKey | string | Yes | — | Issue ID or key to assign |
accountId | string | Yes | — | Account ID of the user to assign to |
jira_add_comment_to_issue
Add a comment to a Jira issue Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
issueIdOrKey | string | Yes | — | Issue ID or key to add comment to |
comment | string | Yes | — | Comment text to add to the issue |
jira_list_issue_comments
List all comments on a Jira issue Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
issueIdOrKey | string | Yes | — | Issue ID or key to list comments for |
maxResults | number | No | 50 | Maximum number of comments to return |
jira_add_attachment_to_issue
Add an attachment to a Jira issue Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
issueIdOrKey | string | Yes | — | Issue ID or key to add attachment to |
fileUrl | string | Yes | — | URL of the file to attach |
filename | string | Yes | — | Name for the attached file |
jira_transition_issue
Transition a Jira issue to a different status Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
issueIdOrKey | string | Yes | — | Issue ID or key to transition |
transitionId | string | Yes | — | ID of the transition to perform |
comment | string | No | — | Optional comment to add during transition |
jira_get_transitions
Get available transitions for a Jira issue Parameters:| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
issueIdOrKey | string | Yes | — | Issue ID or key to get transitions for |

