Jira Prompts MCP Server
@ceshine
An MCP server that offers several commands for generating prompts or contexts from Jira content
This repository provides a Model Context Protocol (MCP) server that offers several commands for generating prompts or contexts from Jira content.
This repository draws significant inspiration from the MarkItDown MCP server and the example Git MCP server. It also incorporates design and code elements from the mcp-atlassian repository. The main differences between this repository and mcp-atlassian are that it uses pycontribs/jira instead of atlassian-api/atlassian-python-api to interact with the Jira API, and it focuses on providing prompts rather than tools. The latter makes it especially useful when working with tools that support only MCP prompts, such as Zed's AI assistant.
Here's another MCP server project of mine: ceshine/git-prompts-mcp-server
Installation
Manual Installation
- Clone this repository
- Install dependencies:
uv sync --frozen
Usage
As a MCP Server for Zed Editor
Add the following to your settings.json:
"context_servers": {
"git_prompt_mcp": {
"command": {
"path": "uv",
"args": [
"--directory",
"/path/to/local/jira_prompts_mcp_server",
"run",
"jira-prompts-mcp-server",
"https://my-company.atlassian.net", // Jira base URL
"[email protected]", // Jira username
"your_api_key" // Jira API token (https://id.atlassian.com/manage-profile/security/api-tokens)
]
},
"settings": {}
}
}
Commands
The server responds to the following commands:
jira-issue-brief <issue-key>: Retrieves the core fields of a Jira issue. Requires the issue key (e.g.,PROJ-123) as an argument.jira-issue-full <issue-key>: Retrieves the core fields, comments, linked issues, and subtasks of a Jira issue. Requires the issue key as an argument.
Examples:
/jira-issue-brief PROJ-123/jira-issue-brief PROJ-155
License
MIT License. See LICENSE for details.