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.
Nessuna recensione ancora. Sii il primo a recensire!
Accedi per unirti alla conversazione
Retrieve a JIRA issue based on its unique key.
Search for JIRA issues using JQL (JIRA Query Language). Parameters: jql (string)
Create a new JIRA issue. Parameters: issue_details (object)
Update an existing JIRA issue. Parameters: issue_key (string), update_details (object)
Add a comment to a JIRA issue. Parameters: issue_key (string), comment (string)
Clone an existing JIRA issue. Parameters: source_issue_key (string), clone_details (object)
Log work against a JIRA issue. Parameters: issue_key (string), work_details (object)