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

bob-mcp-vuln-intake

v0.0.6

Published

MCP server for vulnerability intake - fetches and normalizes Jira/GitHub issues

Readme

bob-mcp-vuln-intake

MCP server for vulnerability intake - fetches and normalizes Jira/GitHub issues for downstream vulnerability remediation workflows.

Purpose

This server serves as the intake layer for vulnerability remediation workflows. It accepts Jira JQL queries or GitHub issue queries, fetches matching issues from the source system, normalizes the returned records into a common schema, enriches them with severity and source metadata, and returns a prioritized batch for downstream analysis.

This server is read-only - it does not modify code, create branches, or transition workflow states.

Quick Start

Installation

npm install -g bob-mcp-vuln-intake

Configuration

Add to your VS Code global settings.json (Cmd+Shift+P → "Open User Settings (JSON)"):

{
  "mcpServers": {
    "bob-mcp-vuln-intake": {
      "command": "npx",
      "args": ["-y", "bob-mcp-vuln-intake"],
      "env": {
        "JIRA_BASE_URL": "https://your-company.atlassian.net",
        "JIRA_USERNAME": "[email protected]",
        "JIRA_PAT": "your-jira-pat",
        "GITHUB_BASE_URL": "https://github.your-company.com/api/v3",
        "GITHUB_TOKEN": "your-github-token"
      }
    }
  }
}

Tools

  • check_setup: Validate startup configuration and connectivity
  • fetch_jira_issues: Execute Jira JQL and return normalized issues
  • fetch_github_issues: Execute GitHub issue search and return normalized issues
  • normalize_issue_batch: Normalize mixed source issues to common schema
  • prioritize_issue_batch: Sort issues by severity for review
  • summarize_issue_batch: Produce batch summary by severity/source/status

Prompts

  • review-vulnerability-query: Interactive vulnerability intake session
  • intake-jira-vulnerabilities: Fetch and prioritize Jira issues
  • intake-github-vulnerabilities: Fetch and prioritize GitHub issues

Environment Variables

Required

  • JIRA_BASE_URL: Jira base URL (e.g., https://your-company.atlassian.net)
  • JIRA_USERNAME: Jira username for authentication
  • JIRA_PAT: Jira Personal Access Token
  • GITHUB_BASE_URL: GitHub Enterprise API base URL
  • GITHUB_TOKEN: GitHub Enterprise personal access token

Optional

  • DEFAULT_SOURCE_PRIORITY: Comma-separated priority order (e.g., jira,github)
  • DEFAULT_SEVERITY_ORDER: Comma-separated severity order (e.g., Critical,High,Medium,Low,Minor)
  • REQUEST_TIMEOUT_MS: Request timeout in milliseconds
  • LOG_LEVEL: Logging level

Degraded Mode

If either Jira or GitHub credentials are missing or unreachable, the server operates in degraded mode:

  • Jira only: GitHub queries will fail with connection error
  • GitHub only: Jira queries will fail with connection error
  • Neither available: Server starts but all tool calls will fail

Use check_setup tool to diagnose connectivity issues.

IBM Bob Limitations

  • IBM Bob supports stdio-based MCP servers only
  • This server works with IBM Bob when configured in global settings
  • Zero-argument prompts may not be fully supported in all IBM Bob versions

License

Apache-2.0