This Jira MCP server, developed by an unnamed creator, integrates Jira project management capabilities with AI assistants. It leverages the Jira API to provide a streamlined interface for managing projects, issues, and workflows. The server abstracts Jira's complex API, offering operations for user management, issue creation and updating, project configuration, and automated workflows. By connecting AI systems with Jira's collaborative features, this implementation enables assistants to automate project management tasks, track progress, and maintain organized development processes. It is particularly useful for software development teams and project managers looking to enhance their Jira-based workflows with AI-driven insights and automation.
아직 리뷰가 없습니다. 첫 번째 리뷰를 작성해 보세요!
대화에 참여하려면 로그인하세요
Get user's account ID by email. Parameters: email (string)
List all available issue types. Returns: id, name, description, subtask status. No parameters required.
List all available issue link types. Returns: id, name, inward/outward descriptions. No parameters required.
Get all issues in a project. Parameters: projectKey (string)
Get issues with JQL filtering. Parameters: projectKey (string), jql (string)
Get issues assigned to a user. Parameters: projectKey (string), jql (string)
Create a standard issue. Parameters: projectKey (string), summary (string), issueType (string), description (string), assignee (string), labels (array), components (array), priority (string)
Create a subtask. Parameters: parent (string), projectKey (string), summary (string), issueType (string), description (string), assignee (string)
Update issue fields. Parameters: issueKey (string), summary (string), description (string), assignee (string), status (string), priority (string)
Create issue link. Parameters: linkType (string), inwardIssueKey (string), outwardIssueKey (string)
Delete single issue. Parameters: issueKey (string)
Delete issue with subtasks. Parameters: issueKey (string), deleteSubtasks (boolean)
Delete multiple issues. Parameters: issueKeys (array)