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

@torocloud/legacy-jira-mcp-server

v1.0.1

Published

MCP server for integrating with legacy Jira version.

Readme

Atlassian MCP Server (Jira + Bitbucket + SonarCloud)

MCP server integrates with legacy Jira versions:

  • get_jira_issue: fetch Jira issue title and description
  • search_jira_issues: search Jira issues using a JQL query
  • add_jira_comment: add a comment to an existing Jira issue
  • create_jira_issue: create a new Jira issue
  • update_jira_issue: update fields of an existing Jira issue
  • get_jira_sprint: get the name of the currently active sprint for a Jira project

Requirements

  • Node.js 18+
  • npm
  • Access credentials for:
    • Jira Server (v6.x.x)

Install

npm install

Build

npm run build

Environment Variables

Set these in MCP server settings (recommended) or in your shell:

  • JIRA_BASE_URL - e.g. https://jira.example.com
  • JIRA_USERNAME - Jira username
  • JIRA_PASSWORD - Jira password
  • JIRA_STRICT_SSL - optional, true (default) or false

VS Code MCP Configuration

Add this in your VS Code settings JSON:

{
  "mcp": {
    "servers": {
      "atlassian": {
        "type": "stdio",
        "command": "node",
        "args": ["/path/to/legacy-jira-mcp-server/dist/index.js"],
        "env": {
          "JIRA_BASE_URL": "https://jira.example.com",
          "JIRA_USERNAME": "<jira-username>",
          "JIRA_PASSWORD": "<jira-password>",
          "JIRA_STRICT_SSL": "true",
        }
      }
    }
  }
}

Available Tools

get_jira_issue

Input:

{
  "issue_key": "PROJECT-123"
}

Output: Jira issue key, title, URL, and description.

search_jira_issues

Search Jira issues using a JQL query.

Input:

{
  "jql": "project = APP AND status = \"In Progress\"",
  "max_results": 20
}
  • jql (required): JQL query string
  • max_results (optional): maximum number of results to return, default 20, max 100

Output: JSON array of matching issues, each with key, title, status, assignee, fixVersions, affectedVersions, and url.

add_jira_comment

Add a comment to an existing Jira issue.

Input:

{
  "issue_key": "APP-123",
  "body": "This is fixed in the latest deploy."
}
  • issue_key (required): Jira issue key
  • body (required): comment text

Output: Confirmation message.

create_jira_issue

Create a new Jira issue. Bugs must include affected_versions.

Input:

{
  "project_key": "APP",
  "summary": "Something is broken",
  "issue_type": "Bug",
  "description": "Steps to reproduce...",
  "assignee": "john.doe",
  "fix_versions": ["v1.2"],
  "affected_versions": ["v1.1"]
}
  • project_key (required): Jira project key
  • summary (required): issue title
  • issue_type (required): e.g. Bug, Task, Story
  • description, assignee, fix_versions, affected_versions (optional)

Output: JSON object with key, title, and url of the created issue.

update_jira_issue

Update fields of an existing Jira issue. Only provided fields will be changed.

Input:

{
  "issue_key": "APP-123",
  "summary": "Updated title",
  "description": "Updated description",
  "assignee": "jane.doe",
  "fix_versions": ["v1.3"],
  "affected_versions": ["v1.1"]
}
  • issue_key (required): Jira issue key
  • All other fields optional; only provided fields are updated. fix_versions and affected_versions replace existing values.

Output: Confirmation message.

get_jira_sprint

Get the name of the currently active sprint for a Jira project.

Input:

{
  "project_key": "BLN"
}
  • project_key (required): Jira project key

Output: the active sprint name, or a message if no active sprint is found.

Notes

  • Jira integration uses jira-client with REST API v2 (apiVersion: "2"), compatible with Jira Server 6.x endpoints used for issue lookup.