Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PAT | Yes | Your Personal Access Token for Jira authentication | |
| JIRA_BASE_URL | Yes | The base URL of your self-hosted Jira instance (e.g., https://your-jira-instance.com/) |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| jira_get_issue | Get details of a Jira issue by its key |
| jira_search_issues | Search for Jira issues using JQL |
| jira_create_issue | Create a new Jira issue |
| jira_update_issue | Update an existing Jira issue |
| jira_delete_issue | Delete a Jira issue |
| jira_assign_issue | Assign or unassign a Jira issue |
| jira_get_comments | Get comments on a Jira issue |
| jira_add_comment | Add a comment to a Jira issue |
| jira_get_transitions | Get available transitions for a Jira issue |
| jira_transition_issue | Transition a Jira issue to a new status |
| jira_get_projects | Get all Jira projects |
| jira_get_project | Get details of a specific Jira project |
| jira_search_users | Search for Jira users |
| jira_get_current_user | Get the current authenticated user |
| jira_link_issues | Link two Jira issues |
| jira_add_watcher | Add a watcher to a Jira issue |
| jira_get_priorities | Get all available priorities |
| jira_get_statuses | Get all available statuses |
| jira_get_create_meta | Get metadata for creating issues - shows required fields and allowed values (dropdown options) for a project and issue type. IMPORTANT: Call this before creating an issue to know what fields are required and what values are allowed. |
| jira_get_edit_meta | Get metadata for editing an issue - shows editable fields and allowed values for an existing issue |
| jira_get_project_versions | Get all versions for a project - use this to find valid values for fixVersions and affectsVersions fields |
| jira_get_project_components | Get all components for a project - use this to find valid values for the components field |
| jira_get_fields | Get all available fields including custom fields - shows field IDs, names, and types |
| jira_get_field_options | Get allowed values/options for a specific field in a project and issue type context |
| jira_get_issue_link_types | Get all available issue link types |
| jira_create_issue_advanced | Create a new Jira issue with full field support including fixVersions, components, and custom fields. Use jira_get_create_meta first to discover required fields and allowed values. |
| jira_update_issue_advanced | Update a Jira issue with full field support including fixVersions, components, and custom fields. Use jira_get_edit_meta first to discover editable fields and allowed values. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Jira Configuration | Current Jira server configuration |