Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| JIRA_PAT | Yes | Your Personal Access Token | |
| JIRA_BASE_URL | Yes | The base URL of your self-hosted Jira instance (e.g., https://jira.domain.com) |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| jira_get_issue | Get details of a specific Jira issue by its key (e.g., PROJ-123) |
| jira_search_issues | Search for Jira issues using JQL (Jira Query Language). Examples: "project = PROJ AND status = Open", "assignee = currentUser() AND status != Done" |
| jira_create_issue | Create a new Jira issue in a specified project |
| jira_update_issue | Update an existing Jira issue |
| jira_add_comment | Add a comment to a Jira issue |
| jira_get_comments | Get all comments from a Jira issue |
| jira_get_projects | List all available Jira projects |
| jira_get_project | Get details of a specific Jira project |
| jira_get_issue_types | Get available issue types for a project |
| jira_assign_issue | Assign a Jira issue to a user |
| jira_delete_issue | Delete a Jira issue permanently |
| jira_get_current_user | Get information about the currently authenticated user |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |