Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
JIRA_TOKEN | No | API token or Personal Access Token | |
JIRA_PASSWORD | No | Password for basic auth | |
JIRA_USERNAME | No | Username for basic auth or email for Jira Cloud | |
JIRA_SERVER_URL | No | URL of your Jira server | |
JIRA_AUTH_METHOD | No | Authentication method ('basic_auth' or 'token_auth') |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
get_jira_projects | Get all accessible Jira projects |
get_jira_issue | Get details for a specific Jira issue by key |
search_jira_issues | Search for Jira issues using JQL (Jira Query Language) |
create_jira_issue | Create a new Jira issue. Common issue types include 'Bug', 'Task', 'Story', 'Epic' (capitalization handled automatically) |
create_jira_issues | Bulk create new Jira issues. IMPORTANT: For 'issue_type', use the exact case-sensitive types in your Jira instance (common: 'Bug', 'Task', 'Story', 'Epic') |
add_jira_comment | Add a comment to a Jira issue |
get_jira_transitions | Get available workflow transitions for a Jira issue |
transition_jira_issue | Transition a Jira issue to a new status |
get_jira_project_issue_types | Get all available issue types for a specific Jira project |
create_jira_project | Create a new Jira project |