npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

mcp-jira-data-center

v1.0.1

Published

MCP server for Jira Server/Data Center

Readme

Jira Server MCP

A Model Context Protocol (MCP) server that connects AI assistants to Jira Server/Data Center. Create and manage issues, search with JQL, track sprints, and interact with your Jira instance through natural language in Claude and other AI assistants.

Quick Start

Get Your Jira Server Credentials

  1. Log into your Jira Server instance
  2. Go to Profile > Personal Access Tokens
  3. Click Create token
  4. Give it a name and copy the generated token
  5. Note your Jira Server URL (e.g., https://jira.yourcompany.com)

Configuration

Claude Code

Add the server using the Claude Code CLI:

claude mcp add -s user \
    jira-server \
    npx mcp-jira-data-center@latest \
    -e "JIRA_URL=https://jira.yourcompany.com" \
    -e "JIRA_TOKEN=your_personal_access_token"

Manual Configuration (Any MCP Client)

Add this configuration to your MCP client's configuration file:

{
  "mcpServers": {
    "jira-server": {
      "command": "npx",
      "args": ["mcp-jira-data-center@latest"],
      "type": "stdio",
      "env": {
        "JIRA_URL": "https://jira.yourcompany.com",
        "JIRA_TOKEN": "your_personal_access_token"
      }
    }
  }
}

Available Tools

The server provides 30 MCP tools for Jira Server operations:

Issues (15 tools)

  • get_issue - Get issue details by key or ID
  • search_issues - Search issues with JQL
  • create_issue - Create a new issue
  • update_issue - Update issue fields (single JSON fields param)
  • delete_issue - Delete an issue
  • add_comment - Add a comment to an issue
  • edit_comment - Edit an existing comment
  • transition_issue - Transition an issue to a new status
  • get_transitions - Get available transitions for an issue
  • link_to_epic - Link an issue to an epic
  • get_worklog - Get worklogs for an issue
  • add_worklog - Add a worklog entry
  • download_attachments - Download all attachments from an issue
  • batch_get_changelogs - Get changelogs for multiple issues
  • batch_create_issues - Create multiple issues at once

Projects (2 tools)

  • get_all_projects - List all accessible projects
  • get_project_versions - Get versions for a project

Agile (6 tools)

  • get_agile_boards - List agile boards
  • get_board_issues - Get issues on a board
  • get_sprints_from_board - List sprints for a board
  • get_sprint_issues - Get issues in a sprint
  • create_sprint - Create a new sprint
  • update_sprint - Update sprint details

Fields (2 tools)

  • search_fields - Search for field definitions
  • get_field_options - Get allowed values for a field

Links (3 tools)

  • get_link_types - List available issue link types
  • create_issue_link - Link two issues together
  • remove_issue_link - Remove a link between issues

Users (1 tool)

  • get_user_profile - Get user profile by username

Example Queries

  • "Show me all open bugs in the PROJ project"
  • "Create a bug report for the login page issue"
  • "What are the active sprints on the main board?"
  • "Transition PROJ-123 to In Progress"
  • "Add a comment to PROJ-456 with the investigation results"
  • "Download all attachments from PROJ-789"
  • "Link PROJ-100 to epic PROJ-50"

Development

From Source

git clone https://github.com/evrimalacan/mcp-jira-data-center.git
cd mcp-jira-data-center
npm install
npm run build
npm run dev

See CLAUDE.md for detailed development guidelines.

Troubleshooting

Common Issues

"Authentication failed"

  • Verify your Personal Access Token is correct
  • Ensure the token has not expired

"Access forbidden"

  • Check your Jira user has permission for the resource
  • Verify project-level permissions

"Resource not found"

  • Confirm the issue key, project key, or ID is correct
  • Check you have access to the specified resource

Documentation

License

MIT License - see LICENSE file for details.