
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
@atlassian-dc-mcp/jira
Advanced tools
This package provides a Machine Comprehension Protocol (MCP) server for interacting with Atlassian Jira Data Center edition.
To use this MCP connector with Claude Desktop, add the following to your Claude Desktop configuration:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"atlassian-jira-dc": {
"command": "npx",
"args": ["-y", "@atlassian-dc-mcp/jira"],
"env": {
"JIRA_HOST": "your-jira-host",
"JIRA_API_TOKEN": "your-token"
}
}
}
}
Note: Set JIRA_HOST
variable only to domain + port without a protocol (e.g., your-instance.atlassian.net
). The https protocol is assumed.
Alternatively, you can use JIRA_API_BASE_PATH
instead of JIRA_HOST
to specify the complete API base URL including protocol (e.g., https://your-instance.atlassian.net/rest
). Note that the /api/2/search/
part is static and added automatically in the code, so you don't need to include it in the JIRA_API_BASE_PATH
value.
Install dependencies:
npm install
Create a .env
file in the packages/jira directory with the following variables:
JIRA_HOST=your-jira-instance.atlassian.net
# OR alternatively use
# JIRA_API_BASE_PATH=https://your-jira-instance.atlassian.net/rest
# Note: /api/latest/ is added automatically, do not include it
JIRA_API_TOKEN=your-personal-access-token
To create a personal access token:
Start the MCP server:
npm run build
Or for development with auto-reload:
npm run dev
Search for JIRA issues using JQL in the JIRA Data Center edition instance.
Parameters:
jql
(string, required): JIRA Query Language search stringexpand
(array, optional): Fields to expand in the responsestartAt
(number, optional): Starting index for paginationmaxResults
(number, optional): Maximum number of results to return (default: 10)Get details of a JIRA issue by its key from the JIRA Data Center edition instance.
Parameters:
issueKey
(string, required): The issue key (e.g., "PROJECT-123")expand
(string, optional): Comma-separated list of fields to expandGet comments for a JIRA issue from the JIRA Data Center edition instance.
Parameters:
issueKey
(string, required): The issue key (e.g., "PROJECT-123")expand
(string, optional): Comma-separated list of fields to expandCreate a new issue in the JIRA Data Center edition instance.
Parameters:
projectId
(string, required): ID of the projectsummary
(string, required): Issue summarydescription
(string, required): Issue description in format suitable for JIRA Data Center edition (JIRA Wiki Markup)issueTypeId
(string, required): ID of the issue typeAdd a comment to a JIRA issue in the JIRA Data Center edition instance.
Parameters:
issueKey
(string, required): The issue key (e.g., "PROJECT-123")comment
(string, required): Comment text in format suitable for JIRA Data Center edition (JIRA Wiki Markup)FAQs
Unknown package
The npm package @atlassian-dc-mcp/jira receives a total of 199 weekly downloads. As such, @atlassian-dc-mcp/jira popularity was classified as not popular.
We found that @atlassian-dc-mcp/jira demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.