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

@mtgibbs/blackduck-polaris-mcp

v1.0.2

Published

MCP server for querying Black Duck Polaris security vulnerabilities, issues, and scan results

Readme

Black Duck Polaris MCP

MCP (Model Context Protocol) server for querying Black Duck Polaris security scan results. Enables AI coding agents like Claude Code and GitHub Copilot to identify vulnerabilities, view scan results, and get remediation guidance directly in your development workflow.

Features

  • Query security issues (SAST, SCA, DAST) across projects and branches
  • Filter by severity, tool type, and delta (new vs existing issues)
  • View code snippets for vulnerability occurrences
  • Get AI-powered remediation guidance via Polaris Assist
  • Browse portfolio hierarchy: applications, projects, branches
  • Review scan history and test metrics

Installation

npm (for Claude Code, Copilot, etc.)

npx @mtgibbs/blackduck-polaris-mcp

From source (Deno)

git clone https://github.com/mtgibbs/blackduck-polaris-mcp.git
cd blackduck-polaris-mcp
cp .env.example .env
# Edit .env with your Polaris URL and API token
deno task dev

Configuration

| Variable | Description | | ------------------- | -------------------------------------------------------------------------------------------- | | POLARIS_URL | Polaris instance URL (e.g., https://polaris.blackduck.com) | | POLARIS_API_TOKEN | API access token (create one under Profile > Access Tokens) |

Claude Code

Add to your Claude Code MCP settings:

{
  "mcpServers": {
    "blackduck-polaris": {
      "command": "npx",
      "args": ["-y", "@mtgibbs/blackduck-polaris-mcp"],
      "env": {
        "POLARIS_URL": "https://polaris.blackduck.com",
        "POLARIS_API_TOKEN": "your-token-here"
      }
    }
  }
}

Available Tools

| Tool | Description | | ------------------------ | ---------------------------------------------------------- | | get_portfolios | Get the portfolio for your Polaris organization | | get_applications | List applications in a portfolio | | get_projects | List projects (optionally filtered by application) | | get_branches | List branches for a project | | get_issues | Get security issues with severity/tool/delta filters | | get_occurrences | Get individual vulnerability instances with file/line info | | get_code_snippet | View source code around a vulnerability | | get_remediation_assist | Get AI remediation guidance from Polaris Assist | | get_tests | List security scan tests and their status | | get_test_metrics | Get issue count metrics for a scan |

License

MIT