Jira Integration
Connect your AI to Jira for seamless issue tracking, project management, and workflow automation.
Overview
The Jira integration enables your AI to interact with your Jira projects, allowing you to create, update, and search for issues, transition workflows, add comments, and more—all without leaving your AI interface.
Make sure you've connected Skeet by copying your MCP key into your AI app. Learn more in the quickstart ».
Authentication
To use Jira with Skeet, you first need to authenticate:
- Connect your Jira account in the Skeet dashboard
- Ensure your AI is connected to Skeet with your MCP key
- Verify your connection:
List my skeet integrations
Creating Jira Issues
Create new issues in Jira directly from your AI interface. You'll need to provide a project, summary, and issue type at minimum.
Create a new Jira issue with summary "Implement user authentication" in project "PROJ" as a Task
The AI will use the jira_create_issue
tool with the following parameters:
{
"project": "Project key where the issue will be created",
"summary": "Issue summary/title",
"description": "Detailed description of the issue",
"issuetype": "Type of issue (e.g., 'Bug', 'Task', 'Story')",
"assignee": "ID of the user to assign the issue to",
"priority": "Priority ID of the issue"
}
If you're unsure about project keys, issue types, or priority IDs, you can retrieve them using the jira_get_viewer
tool.
Updating Jira Issues
Update existing Jira issues by providing the issue key and the fields you want to modify.
Update Jira issue PROJ-123 to change the summary to "Refactor authentication flow" and set priority to highest
The AI will use the jira_update_issue
tool with these parameters:
{
"issueKey": "Key of the issue to update (e.g., 'PROJ-123')",
"summary": "New summary/title for the issue",
"description": "New description for the issue",
"assignee": "ID of the user to assign the issue to",
"priority": "New priority ID for the issue"
}
Transitioning Issues
Change the status of Jira issues by transitioning them through your workflow.
Move Jira issue PROJ-123 to "In Progress" status
The AI will use the jira_transition_issue
tool:
{
"issueKey": "Key of the issue to transition (e.g., 'PROJ-123')",
"transitionId": "ID of the transition to apply"
}
Transition IDs are specific to your Jira workflows. Use the jira_get_viewer
tool to get information about available transitions.
JQL Searching
Search for issues using Jira Query Language (JQL), which provides powerful and flexible search capabilities.
Search Jira for all high priority bugs in project PROJ
The AI will use the jira_jql_search
tool with parameters:
{
"jql": "JQL query string",
"maxResults": "Maximum results to fetch",
"fields": ["List of fields to return for each issue"],
"expand": "Additional info to include in the response"
}
JQL is Jira's powerful query language. Common JQL examples:
project = PROJ AND priority = High AND issuetype = Bug
assignee = currentUser() AND status != Resolved AND summary ~ "authentication"
Getting Issue Details
Get detailed information about a specific Jira issue.
Show me details for Jira issue PROJ-456
The AI will use the jira_get_issue
tool:
{
"issueIdOrKey": "ID or key of the issue",
"fields": ["Fields to include in the response"],
"expand": "Additional information to include in the response"
}
Adding Comments
Add comments to existing Jira issues.
Add a comment to Jira issue PROJ-42 saying "I've fixed this bug in PR #123"
The AI will use the jira_comment_issue
tool:
{
"issueKey": "Key of the issue to comment on",
"comment": "Comment to add to the issue"
}
User Management
Search for Jira users by username.
Find Jira user "john.doe"
The AI will use the jira_search_users
tool:
{
"query": "Query to search for users"
}
Getting Viewer Info
Retrieve information about the authenticated user, available projects, issue types, workflows, and more.
Get my Jira information and available projects
The AI will use the jira_get_viewer
tool, which doesn't require any parameters.
What's next?
Now that you've connected Jira, explore other integrations to make your AI even more powerful.
Integrations
Sequential Thinking
Enable dynamic and reflective problem-solving through structured thinking steps.