Jira CLI MCP
Provides tools for managing Jira issues, epics, sprints, and projects, including creating, editing, assigning, and searching issues, as well as adding comments and linking issues.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Jira CLI MCPcreate a bug report for login page not loading"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Jira CLI MCP
A Model Context Protocol (MCP) server that wraps the Jira CLI tool, exposing Jira commands through MCP resources, tools, and prompts for AI assistant integration.
Features
MCP Resources: Access Jira data through standardized URL endpoints
MCP Tools: Execute Jira commands (create issues, edit, assign, etc.)
MCP Prompts: Use templates for common Jira workflows
Authentication: Uses existing Jira CLI authentication
Project Configuration: Customize default project and config
Prerequisites
Python 3.11+
Jira CLI installed and configured
Access to a Jira instance
Installation
Clone this repository:
git clone https://github.com/yourusername/jira-cli-mcp.git cd jira-cli-mcpInstall dependencies with uv:
uv sync source .venv/bin/activate # On Windows: .venv\Scripts\activate
Configuration
The server can be configured via environment variables:
JIRA_CONFIG_FILE: Path to a custom Jira CLI config fileJIRA_PROJECT: Default Jira project to use
Example:
export JIRA_PROJECT="PROJ"
export JIRA_CONFIG_FILE="/path/to/config.yml"Usage
Starting the Server
python main.pyBy default, the server will start on port 8080.
Available Resources
jira://issues- List recent issuesjira://issue/{issue_key}- View issue detailsjira://epics- List epicsjira://sprints- List sprintsjira://projects- List projectsjira://boards- List boardsjira://search/{jql}- Search issues with JQL
Available Tools
create_issue- Create a new Jira issueedit_issue- Edit an existing Jira issueassign_issue- Assign issue to a usermove_issue- Move/transition issue to new statusadd_comment- Add comment to issuesearch_issues_tool- Search issues with flexible criteriaclone_issue- Clone an existing issuelink_issues- Link two issuescreate_epic- Create a new epicadd_to_sprint- Add issues to sprint
Available Prompts
create_bug_report- Template for creating a bug reportcreate_feature_request- Template for creating a feature requestdaily_standup_search- Search for issues relevant to daily standupissue_triage_workflow- Workflow for triaging new issues
Integrating with AI Assistants
This MCP server can be integrated with AI assistants that support the Model Context Protocol. Example integration:
from mcp.client import MCPClient
# Connect to the MCP server
client = MCPClient("http://localhost:8080")
# Use resources
issues = client.fetch_resource("jira://issues")
# Execute tools
result = client.execute_tool("create_issue", {
"summary": "Fix login bug",
"issue_type": "Bug",
"priority": "High"
})
# Get prompts
template = client.get_prompt("create_bug_report", {
"component": "Authentication",
"severity": "High"
})License
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/benomahony/jira_cli_mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server