Connect to Jira to search, create, and manage issues, projects, and workflow transitions.
| Action | Description | Parameters | Returns |
|---|---|---|---|
add_attachment ⚠ | Add an attachment to an issue | issue_key, filename, content | JiraAttachment |
add_comment ⚠ | Add a comment to an issue | issue_key, body | JiraComment |
add_watcher | Add a watcher to an issue | issue_key, account_id | NoneType |
add_worklog ⚠ | Add a worklog entry to an issue | issue_key, time_spent [comment] | JiraWorklog |
assign_issue | Assign an issue to a user | issue_key, assignee_account_id | NoneType |
create_issue ⚠ | Create a new issue | project_key, summary [issue_type, description, priority, assignee] | JiraIssue |
create_project ⚠ | Create a new project | name, key, project_type_key, lead_account_id | JiraProject |
delete_comment ⚠ | Delete a comment from an issue | issue_key, comment_id | NoneType |
delete_issue ⚠ | Delete an issue | issue_key | NoneType |
get_board | Get an Agile board by ID | board_id | JiraBoard |
get_issue | Get a single issue by key | issue_key | JiraIssue |
get_transitions | Get available transitions for an issue | issue_key | list |
get_user | Get a Jira user by account ID | account_id | JiraUser |
link_issues ⚠ | Create a link between two issues | inward_key, outward_key, link_type | NoneType |
list_boards | List Agile boards | [project_key, limit, start_at] | PaginatedList[JiraBoard] |
list_comments | List comments on an issue | issue_key | list |
list_issue_types | List issue types available in the instance | [project_id] | list |
list_priorities | List available priorities | — | list |
list_projects | List projects accessible to the user | [limit, start_at] | PaginatedList[JiraProject] |
list_resolutions | List available resolutions | — | list |
list_sprints | List sprints for a board | board_id [state, limit, start_at] | PaginatedList[JiraSprint] |
list_watchers | List watchers on an issue | issue_key | list |
list_worklogs | List worklog entries on an issue | issue_key | list |
remove_watcher | Remove a watcher from an issue | issue_key, account_id | NoneType |
search_issues | Search issues using JQL | jql [limit, start_at] | PaginatedList[JiraIssue] |
search_users | Search for Jira users | query [limit] | list |
transition_issue ⚠ | Transition an issue to a new status | issue_key, transition_id | NoneType |
update_issue | Update an existing issue | issue_key, fields | JiraIssue |
Full schema explorer, code generation, and live API testing