Install
openclaw skills install jira-opsRetrieve, analyze, and update Jira tickets directly. Supports MCP-based (recommended) and direct REST API approaches. Trigger phrases: fetch Jira ticket, update ticket status, add comment, transition issue, search Jira, extract acceptance criteria. Adapted from everything-claude-code by @affaan-m (MIT)
openclaw skills install jira-opsRetrieve, analyze, and update Jira tickets with MCP or direct REST API.
Install mcp-atlassian via uvx:
{
"jira": {
"command": "uvx",
"args": ["mcp-atlassian==0.21.0"],
"env": {
"JIRA_URL": "https://YOUR_ORG.atlassian.net",
"JIRA_EMAIL": "your.email@example.com",
"JIRA_API_TOKEN": "your-api-token"
}
}
}
Get your API token: https://id.atlassian.com/manage-profile/security/api-tokens
Set these environment variables:
JIRA_URL — Jira instance URLJIRA_EMAIL — Your account emailJIRA_API_TOKEN — API token (never hardcode)With mcp-atlassian configured:
jira_search — JQL queriesjira_get_issue — Fetch issue detailsjira_create_issue — Create new issuesjira_update_issue — Update fieldsjira_transition_issue — Change statusjira_add_comment — Add commentsjira_get_transitions — List available transitionsExtract from tickets:
| Workflow | Jira Action |
|---|---|
| Start work | Transition to "In Progress" + comment branch name |
| Tests done | Comment with test coverage summary |
| PR created | Comment with link, transition if needed |
| Merged | Transition to "Done" |
.env to .gitignore