MCPServers
Jira - 生产力 server banner image
Jira - MCP server logo
18
0

Summary

This JIRA MCP server, developed by Dimosthenis Kaponis, enables AI assistants to interact with JIRA data through the Model Context Protocol. Built with TypeScript and leveraging the JIRA REST API v3, it provides tools for searching issues, retrieving epic children, and getting detailed issue information. The implementation stands out by offering robust data cleaning features, including extraction of text from Atlassian Document Format and tracking of issue relationships. It's particularly useful for AI systems or applications needing to analyze JIRA data, automate project management tasks, or generate reports based on issue tracking information.

Available Actions(7)

search_issues

Search JIRA issues using JQL. Returns up to 50 results per request. Input Schema: { searchString: string; }

get_epic_children

Get all child issues in an epic including their comments and relationship data. Limited to 100 issues per request. Input Schema: { epicKey: string; }

get_issue

Get detailed information about a specific JIRA issue including comments and all relationships. Input Schema: { issueId: string; }

create_issue

Create a new JIRA issue with specified fields. Input Schema: { projectKey: string, issueType: string, summary: string, description?: string, fields?: { [key: string]: any } }

update_issue

Update fields of an existing JIRA issue. Input Schema: { issueKey: string, fields: { [key: string]: any } }

add_attachment

Add a file attachment to a JIRA issue. Input Schema: { issueKey: string, fileContent: string, filename: string }

add_comment

Add a comment to a JIRA issue. Accepts plain text and converts it to the required Atlassian Document Format internally. Input Schema: { issueIdOrKey: string, body: string }

Last Updated: April 16, 2025

社区评论

0.0
0 条评论
5
0
4
0
3
0
2
0
1
0

暂无评论. 成为第一个评论的人!

登录以参与讨论

Try it now in
HighlightHighlight AI

语言

TypeScript

分类

标签