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-review-status

v0.6.0

Published

MCP server that reports PR review status for a Jira issue — who must still approve, who already did, and whether the PR is merged.

Downloads

597

Readme

mcp-jira-review-status

MCP server that answers one question project managers ask every day:

"Task PROJ-123 is in review — who still needs to approve it?"

Give it a ticket key. It searches GitHub for PRs whose title or body contains the key and reports:

  • Is the PR open, merged, or closed?
  • Who are the reviewers?
  • Who already approved, who requested changes, who is still pending?

So managers can nudge the right person instead of broadcasting to the team.


Quick start

npx -y mcp-jira-review-status setup

Two questions only:

  1. GitHub token — create one at https://github.com/settings/tokens/new with scopes repo and read:org.
  2. Which MCP client? — Claude Desktop, Claude Code (terminal), or Cursor.

The wizard verifies your token, auto-detects which GitHub orgs to search in, and installs the server. No manual JSON editing.

Restart your client (Claude Code picks it up on /mcp reload), then ask:

"Use jira-review-status to check PROJ-123"


Updating

npx -y mcp-jira-review-status@latest update

This walks through every client it finds installed (Claude Desktop, Claude Code, Cursor), replaces the pinned version in each config with whatever is latest on npm, and keeps your token untouched. Restart clients after running.


What you get

Tool: get_review_status({ issueKey: "PROJ-123" })

Output (deliberately minimal — only what a PM needs to nudge the right person):

PROJ-123: 1 PR

#482 OPEN https://github.com/your-org/app/pull/482
Approved (1/3): mehmet
Not approved (2): can, zeynep

No CI status, merge conflicts, labels, branches, or author info — the tool answers one question ("who still needs to approve?") and stays out of the way. The server prompts the LLM to not embellish this either.

A structured JSON copy is returned alongside the text for downstream tools.


How it works

  1. When the server starts, it reads your GITHUB_TOKEN.
  2. When you call get_review_status(issueKey), it runs a GitHub search: org:<your-orgs> is:pr <issueKey> in:title,body.
  3. For each matching PR it fetches the PR state, requested_reviewers, and the reviews timeline, then aggregates per-user latest-wins:
    • The most recent non-dismissed review of type APPROVED or CHANGES_REQUESTED wins.
    • A user who only commented is reported separately.
    • Users in requested_reviewers with no review yet are pending.

Customizing the search scope

By default the server searches every org the token has access to. The setup wizard lets you add or override the scope interactively.

Teams often put the ticket key in the branch name instead of the PR title — e.g. feature/PROJ-123-add-toggle. When your scope includes an explicit owner/repo (not just an org name), the server falls back to listing that repo's open PRs and matching the ticket key against branch names after the title/body search comes up empty. Org-only scopes can't do this (enumerating every repo is too expensive), so add the repos you care about.

Override via env (comma-separated; owner/repo for repos, plain names for orgs):

MCP_JIRA_REVIEW_SEARCH_SCOPE=your-org,other-org/tools

Or in ~/.config/mcp-jira-review/config.json:

{ "searchScope": ["your-org", "other-org/tools"] }

Or per-project ./.mcp-jira-review.json:

{ "searchScope": ["your-org/android", "your-org/ios"] }

Manual install (advanced)

If you skip the wizard, add this to your Claude Desktop or Cursor config:

{
  "mcpServers": {
    "jira-review-status": {
      "command": "npx",
      "args": ["-y", "mcp-jira-review-status"],
      "env": { "GITHUB_TOKEN": "ghp_…" }
    }
  }
}

For Claude Code:

claude mcp add jira-review-status --scope user -e GITHUB_TOKEN=ghp_… -- npx -y mcp-jira-review-status

Development

git clone https://github.com/omeratesss/mcp-jira-review-status
cd mcp-jira-review-status
npm install
npm run typecheck
npm test
npm run build

License

MIT