How can we use Atlassian Jira automation rules to automatically update the status of a parent User Story based on the pass/fail results of linked automation test sub-tasks from the MCP Server?
Can this Generate and Auto-update the Status on the Local Device using the Auto-rule in Jira like Trigger and Condition
Using Atlassian Jira Automation, you can automatically update the status of a parent User Story based on the pass/fail results of linked automation sub-tasks. However, Jira itself does not directly communicate with the MCP server or local execution. Instead, your automation tool must first update the sub-task status in Jira. Once updated, Jira Automation rules (trigger + condition + branch) evaluate the sub-task results and transition the parent issue accordingly (e.g., Failed if any fail, Done if all pass).
Jira Automation works only within Jira (Cloud/Server) and cannot run or update anything on your local device.
Yes, you can do this using Atlassian Jira Automation with a simple rule setup:
Trigger:
Issue Updated (when test sub-task result/status changes from MCP server)
Condition:
Use Related Issues Condition (Sub-tasks)
If ALL sub-tasks = Passed → proceed
If ANY sub-task = Failed → proceed differently
Action (Branch → Parent):
Transition parent User Story:
All Passed → Done
Any Failed → Failed/Blocked
Note:
This runs on Jira (server/cloud), not a local device. Your MCP server just needs to update Jira (via API), which triggers the rule automatically.
In short: MCP updates sub-task → Jira automation evaluates → parent status auto-updates.