Jira
Interact with Jira
Usage Instructions
Connect to Jira workspaces to read, write, and update issues. Access content, metadata, and integrate Jira documentation into your workflows.
Tools
jira_retrieve
Retrieve detailed information about a specific Jira issue
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessToken | string | Yes | OAuth access token for Jira |
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | No | Jira project ID to retrieve issues from. If not provided, all issues will be retrieved. |
issueKey | string | Yes | Jira issue key to retrieve (e.g., PROJ-123) |
cloudId | string | No | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
Output
Parameter | Type |
---|---|
ts | string |
issueKey | string |
summary | string |
description | string |
created | string |
updated | string |
jira_update
Update a Jira issue
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessToken | string | Yes | OAuth access token for Jira |
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | No | Jira project ID to update issues in. If not provided, all issues will be retrieved. |
issueKey | string | Yes | Jira issue key to update |
summary | string | No | New summary for the issue |
description | string | No | New description for the issue |
status | string | No | New status for the issue |
priority | string | No | New priority for the issue |
assignee | string | No | New assignee for the issue |
cloudId | string | No | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
Output
Parameter | Type |
---|---|
ts | string |
issueKey | string |
summary | string |
success | string |
jira_write
Write a Jira issue
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessToken | string | Yes | OAuth access token for Jira |
domain | string | Yes | Your Jira domain (e.g., yourcompany.atlassian.net) |
projectId | string | Yes | Project ID for the issue |
summary | string | Yes | Summary for the issue |
description | string | No | Description for the issue |
priority | string | No | Priority for the issue |
assignee | string | No | Assignee for the issue |
cloudId | string | No | Jira Cloud ID for the instance. If not provided, it will be fetched using the domain. |
issueType | string | Yes | Type of issue to create (e.g., Task, Story, Bug, Sub-task) |
Output
Parameter | Type |
---|---|
ts | string |
issueKey | string |
summary | string |
success | string |
url | string |
Block Configuration
Input
Parameter | Type | Required | Description |
---|---|---|---|
operation | string | Yes | Operation |
Outputs
Output | Type | Description |
---|---|---|
response | object | Output from response |
↳ ts | string | ts of the response |
↳ issueKey | string | issueKey of the response |
↳ summary | string | summary of the response |
↳ description | string | description of the response |
↳ created | string | created of the response |
↳ updated | string | updated of the response |
↳ success | boolean | success of the response |
↳ url | string | url of the response |
Notes
- Category:
tools
- Type:
jira