Tools
Jira Interact with Jira
Copy Link Share Ask AI
Jira is a leading project management and issue tracking platform that helps teams plan, track, and manage agile software development projects effectively. As part of the Atlassian suite, Jira has become the industry standard for software development teams and project management professionals worldwide.
Jira provides a comprehensive set of tools for managing complex projects through its flexible and customizable workflow system. With its robust API and integration capabilities, Jira enables teams to streamline their development processes and maintain clear visibility of project progress.
Key features of Jira include:
Agile Project Management: Support for Scrum and Kanban methodologies with customizable boards and workflows
Issue Tracking: Sophisticated tracking system for bugs, stories, epics, and tasks with detailed reporting
Workflow Automation: Powerful automation rules to streamline repetitive tasks and processes
Advanced Search: JQL (Jira Query Language) for complex issue filtering and reporting
In Nuxa, the Jira integration allows your agents to seamlessly interact with your project management workflow. This creates opportunities for automated issue creation, updates, and tracking as part of your AI workflows. The integration enables agents to create, retrieve, and update Jira issues programmatically, facilitating automated project management tasks and ensuring that important information is properly tracked and documented. By connecting Nuxa with Jira, you can build intelligent agents that maintain project visibility while automating routine project management tasks, enhancing team productivity and ensuring consistent project tracking.
Integrate Jira into the workflow. Can read, write, and update issues. Can also trigger workflows based on Jira webhook events.
Retrieve detailed information about a specific Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) projectIdstring No Jira project ID (optional; not required to retrieve a single issue). issueKeystring Yes Jira issue key to retrieve (e.g., PROJ-123) cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Jira issue details with issue key, summary, description, created and updated timestamps
Update a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) projectIdstring No Jira project ID to update issues in. If not provided, all issues will be retrieved. issueKeystring Yes Jira issue key to update summarystring No New summary for the issue descriptionstring No New description for the issue statusstring No New status for the issue prioritystring No New priority for the issue assigneestring No New assignee for the issue cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Updated Jira issue details with timestamp, issue key, summary, and success status
Write a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) projectIdstring Yes Project ID for the issue summarystring Yes Summary for the issue descriptionstring No Description for the issue prioritystring No Priority for the issue assigneestring No Assignee for the issue cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. issueTypestring Yes Type of issue to create (e.g., Task, Story)
Parameter Type Description successboolean Operation success status outputobject Created Jira issue details with timestamp, issue key, summary, success status, and URL
Retrieve multiple Jira issues in bulk
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) projectIdstring Yes Jira project ID cloudIdstring No Jira cloud ID
Parameter Type Description successboolean Operation success status outputarray Array of Jira issues with summary, description, created and updated timestamps
Delete a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to delete (e.g., PROJ-123) deleteSubtasksboolean No Whether to delete subtasks. If false, parent issues with subtasks cannot be deleted. cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Deleted issue details with timestamp, issue key, and success status
Assign a Jira issue to a user
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to assign (e.g., PROJ-123) accountIdstring Yes Account ID of the user to assign the issue to. Use "-1" for automatic assignment or null to unassign. cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Assignment details with timestamp, issue key, assignee ID, and success status
Move a Jira issue between workflow statuses (e.g., To Do -> In Progress)
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to transition (e.g., PROJ-123) transitionIdstring Yes ID of the transition to execute (e.g., "11" for "To Do", "21" for "In Progress") commentstring No Optional comment to add when transitioning the issue cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Transition details with timestamp, issue key, transition ID, and success status
Search for Jira issues using JQL (Jira Query Language)
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) jqlstring Yes JQL query string to search for issues (e.g., "project = PROJ AND status = Open") startAtnumber No The index of the first result to return (for pagination) maxResultsnumber No Maximum number of results to return (default: 50) fieldsarray No Array of field names to return (default: ['summary', 'status', 'assignee', 'created', 'updated']) cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Search results with timestamp, total count, pagination details, and array of matching issues
Add a comment to a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to add comment to (e.g., PROJ-123) bodystring Yes Comment body text cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Comment details with timestamp, issue key, comment ID, body, and success status
Get all comments from a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to get comments from (e.g., PROJ-123) startAtnumber No Index of the first comment to return (default: 0) maxResultsnumber No Maximum number of comments to return (default: 50) cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Comments data with timestamp, issue key, total count, and array of comments
Update an existing comment on a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key containing the comment (e.g., PROJ-123) commentIdstring Yes ID of the comment to update bodystring Yes Updated comment text cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Updated comment details with timestamp, issue key, comment ID, body text, and success status
Delete a comment from a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key containing the comment (e.g., PROJ-123) commentIdstring Yes ID of the comment to delete cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Deletion details with timestamp, issue key, comment ID, and success status
Get all attachments from a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to get attachments from (e.g., PROJ-123) cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Attachments data with timestamp, issue key, and array of attachments
Delete an attachment from a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) attachmentIdstring Yes ID of the attachment to delete cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Deletion details with timestamp, attachment ID, and success status
Add a time tracking worklog entry to a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to add worklog to (e.g., PROJ-123) timeSpentSecondsnumber Yes Time spent in seconds commentstring No Optional comment for the worklog entry startedstring No Optional start time in ISO format (defaults to current time) cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Worklog details with timestamp, issue key, worklog ID, time spent in seconds, and success status
Get all worklog entries from a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to get worklogs from (e.g., PROJ-123) startAtnumber No Index of the first worklog to return (default: 0) maxResultsnumber No Maximum number of worklogs to return (default: 50) cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Worklogs data with timestamp, issue key, total count, and array of worklogs
Update an existing worklog entry on a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key containing the worklog (e.g., PROJ-123) worklogIdstring Yes ID of the worklog entry to update timeSpentSecondsnumber No Time spent in seconds commentstring No Optional comment for the worklog entry startedstring No Optional start time in ISO format cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Worklog update details with timestamp, issue key, worklog ID, and success status
Delete a worklog entry from a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key containing the worklog (e.g., PROJ-123) worklogIdstring Yes ID of the worklog entry to delete cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Deletion details with timestamp, issue key, worklog ID, and success status
Create a link relationship between two Jira issues
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) inwardIssueKeystring Yes Jira issue key for the inward issue (e.g., PROJ-123) outwardIssueKeystring Yes Jira issue key for the outward issue (e.g., PROJ-456) linkTypestring Yes The type of link relationship (e.g., "Blocks", "Relates to", "Duplicates") commentstring No Optional comment to add to the issue link cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Issue link details with timestamp, inward issue key, outward issue key, link type, and success status
Delete a link between two Jira issues
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) linkIdstring Yes ID of the issue link to delete cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Deletion details with timestamp, link ID, and success status
Add a watcher to a Jira issue to receive notifications about updates
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to add watcher to (e.g., PROJ-123) accountIdstring Yes Account ID of the user to add as watcher cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Watcher details with timestamp, issue key, watcher account ID, and success status
Remove a watcher from a Jira issue
Parameter Type Required Description domainstring Yes Your Jira domain (e.g., yourcompany.atlassian.net) issueKeystring Yes Jira issue key to remove watcher from (e.g., PROJ-123) accountIdstring Yes Account ID of the user to remove as watcher cloudIdstring No Jira Cloud ID for the instance. If not provided, it will be fetched using the domain.
Parameter Type Description successboolean Operation success status outputobject Removal details with timestamp, issue key, watcher account ID, and success status
Category: tools
Type: jira