This documentation describes the integration of MindsDB with Jira, the #1 agile project management tool used by teams to plan, track, release and support world-class software with confidence. The integration allows MindsDB to access data from Jira and enhance it with AI capabilities.Documentation Index
Fetch the complete documentation index at: https://docs.mindsdb.com/llms.txt
Use this file to discover all available pages before exploring further.
Prerequisites
Before proceeding, ensure the following prerequisites are met:- Install MindsDB locally via Docker or Docker Desktop.
- To connect Jira to MindsDB, install the required dependencies following this instruction.
Connection
Establish a connection to Jira from MindsDB by executing the following SQL command and providing its handler name as an engine.jira_url: The base URL for your Jira instance/server.cloud(optional): Settruefor Jira Cloud orfalsefor Jira Server. Defaults totrue.- Jira Cloud credentials:
jira_usernamejira_api_token
- Jira Server credentials (set
cloud: false):- Either
jira_personal_access_token, or jira_usernameandjira_password
- Either
Usage
Retrieve data from a specified table by providing the integration and table names:The above example utilize
jira_datasource as the datasource name, which is defined in the CREATE DATABASE command.Available tables
The handler registers the following tables:projects: Basic project metadata.issues: Normalized issue fields (project, summary, description, priority, status, labels, components, creator/reporter/assignee, timestamps).attachments: Attachments derived from issues.comments: Comments derived from issues.users: Users available to the current Jira context. Column set depends oncloud:- Cloud columns:
accountId, accountType, emailAddress, displayName, active, timeZone, locale, applicationRoles, avatarUrls, groups - Server columns:
key, name, emailAddress, displayName, active, timeZone, locale, lastLoginTime, applicationRoles, avatarUrls, groups, deleted, expand
- Cloud columns:
groups: User groups (groupId, name, html).
LIMIT whenever possible to reduce API calls.