Package Exports
- @deoo/jira-mcp
- @deoo/jira-mcp/dist/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@deoo/jira-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Jira MCP Server
A Model Context Protocol (MCP) server for Jira integration, enabling AI assistants to interact with Jira instances through simple, direct configuration.
Quick Start (No Installation Required)
You do not need to install this package manually. Simply configure your MCP-compatible assistant (such as Claude Desktop or Cursor IDE) to use Jira MCP as a server. The assistant will automatically invoke Jira MCP via npx
when needed.
Simple MCP Configuration (Recommended)
Add the following to your MCP configuration file (e.g., for Cursor or Claude Desktop):
{
"mcpServers": {
"jira": {
"command": "npx",
"args": ["-y", "@deoo/jira-mcp"],
"env": {
"JIRA_HOST": "your-domain.atlassian.net",
"JIRA_PROTOCOL": "https",
"JIRA_USERNAME": "your_username",
"JIRA_PASSWORD": "your_password",
"JIRA_API_VERSION": "2"
}
}
}
}
- No installation required: The above works out-of-the-box with
npx
. - No global or local npm install needed.
- Just configure and use!
Environment Variables Reference
Variable | Required | Description | Example |
---|---|---|---|
JIRA_HOST |
Yes | Jira instance hostname (no protocol) | your-domain.atlassian.net |
JIRA_PROTOCOL |
No (default: https) | Protocol to use | https |
JIRA_USERNAME |
For Basic Auth | Your Jira username | your_username |
JIRA_PASSWORD |
For Basic Auth | Your Jira password | your_password |
JIRA_API_VERSION |
No (default: 2) | Jira API version | 2 |
Available Tools
add-comment
: Add a comment to an issueadd-issue-to-sprint
: Add an issue to a sprint in Jiracreate-issue
: Create a new issue in Jiraedit-issue
: Edit an existing issue in Jiralist-boards
: List Jira boards, optionally filtering by name or projectlist-issues
: List issues from Jiralist-sprints
: List sprints for a given board
Local Development
If you want to contribute or run the server from source, follow these steps:
Clone the repository:
git clone https://github.com/deoooo/jira-mcp.git cd jira-mcp
Install dependencies:
npm install
Build the project:
npm run build
Run the server:
npm run start
Install globally:
npm install -g .