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

project-risk-mcp

v0.7.0

Published

MCP server that aggregates data from 5 upstream MCP tools to measure project risk for software development sprints and cross-team initiatives

Downloads

1,039

Readme

project-risk-mcp latest

MCP server that aggregates data from Jira, Zoom, and GitHub to compute a weighted, multi-dimensional project risk score (0–100). Exposes 10 tools and 2 resources to give Claude Code instant visibility into project health.

"Give me a full risk assessment for PROJ-123"
→ 58/100 HIGH  |  Trend: DEGRADING
  Timeline 62 🔴  |  Team 55 🔴  |  Comms 38 🟡  |  Code 48 🟡
  Top threat: Burn rate lag 35% — completing 35/60 sprint points

Quick Install

Option 1: Install from npm (Recommended)

npm install -g project-risk-mcp

Then add to Claude Code:

claude mcp add --transport stdio --scope user \
  --env GITHUB_PERSONAL_ACCESS_TOKEN="ghp_..." \
  --env ZOOM_ACCESS_TOKEN="eyJ..." \
  --env JIRA_API_TOKEN="ATAT..." \
  project-risk-mcp \
  -- project-risk-mcp

Option 2: Run with npx (No Installation)

claude mcp add --transport stdio --scope user \
  --env GITHUB_PERSONAL_ACCESS_TOKEN="ghp_..." \
  --env ZOOM_ACCESS_TOKEN="eyJ..." \
  --env JIRA_API_TOKEN="ATAT..." \
  project-risk-mcp \
  -- npx project-risk-mcp

Option 3: Build from Source

git clone https://github.com/shaifulshabuj/project-risk-mcp.git
cd project-risk-mcp
npm install && npm run build

Then add to Claude Code:

claude mcp add --transport stdio --scope user \
  --env GITHUB_PERSONAL_ACCESS_TOKEN="ghp_..." \
  --env ZOOM_ACCESS_TOKEN="eyJ..." \
  --env JIRA_API_TOKEN="ATAT..." \
  project-risk-mcp \
  -- node /ABSOLUTE/PATH/TO/project-risk-mcp/build/index.js

4. Use in Claude Code

claude
# Then ask:
"What's the risk on project PROJ-123?"
"Generate an executive risk report for PROJ-123"
"Post risk report for PROJ-123 to #engineering-alerts"

The 4 Risk Dimensions

| Dimension | Weight | Key Signals | |-----------|--------|------------| | Timeline & Delivery | 35% | Burn rate lag, milestone drift, velocity drop, open blockers | | Team Velocity & Capacity | 28% | Sprint blockers, velocity trend, critical bugs, meeting attendance | | Communication & Cadence | 20% | Days since last meeting, action-item follow-through, doc backlog | | Code Quality & PR Health | 17% | CI failure rate, stale PRs, time-to-merge, reviewer concentration |

All 10 Tools

| Tool | What it returns | |------|----------------| | assess_project_risk | Full 4-dimension assessment, top threats, alerts, trend | | get_risk_score | Quick score (0–100) and risk level | | get_timeline_risk | Timeline dimension score and signals | | get_team_risk | Team dimension score and signals | | get_communication_risk | Communication dimension score and signals | | get_code_quality_risk | Code quality dimension score and signals | | get_risk_history | Up to 30 daily assessment snapshots | | generate_risk_report | Formatted report (summary/detailed/executive) | | get_risk_alerts | All HIGH and CRITICAL alerts | | notify_slack | Run assessment and post to a Slack channel |

2 Resources

| URI | Returns | |-----|---------| | risk://{project_id}/dashboard | Condensed snapshot (score, trend, alert counts) | | risk://{project_id}/scorecard | Weighted dimension breakdown (how score was computed) |

No Credentials? No Problem

All upstream integrations fall back to deterministic mock data if a credential is missing or the upstream is down. You can explore all tools and get realistic (simulated) responses without connecting to any real service.

Requirements

  • Node.js ≥ 18.0.0
  • Docker (for GitHub MCP; optional — falls back to mock without it)
  • API tokens for the services you want real data from

Changelog

See CHANGELOG.md for version history and release notes.

Support

For issues, feature requests, or questions, please open an issue on GitHub.

License

This project is licensed under the MIT License.