JIRA MCP Server enables AI assistants to interact with JIRA issue tracking systems through a comprehensive set of tools for managing issues, projects, and work logs. Built by klauseduard, it provides capabilities for retrieving, searching, creating, and updating JIRA issues, as well as listing projects and logging work time. The implementation uses Python with the JIRA library and FastMCP to expose these operations through a standardized interface, making it valuable for development teams who want to integrate JIRA workflows directly into their AI assistant conversations without context switching to the JIRA web interface.
暂无评论. 成为第一个评论的人!
登录以参与讨论
Retrieve JIRA issues using their unique key.
Search for JIRA issues using JIRA Query Language (JQL).
Create a new JIRA issue. Parameters: issue details (various fields depending on JIRA configuration).
Update an existing JIRA issue. Parameters: issue key (string), updated fields (various fields depending on JIRA configuration).
Add a comment to a specific JIRA issue. Parameters: issue key (string), comment text (string).
Create a clone of an existing JIRA issue. Parameters: source issue key (string), customizable fields (various fields depending on JIRA configuration).
Log work done on a specific JIRA issue. Parameters: issue key (string), work description (string), time spent (string).