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-workflow

v0.0.7

Published

MCP server for vulnerability workflow writeback to Jira/GitHub

Downloads

698

Readme

bob-mcp-vuln-workflow

MCP server for vulnerability workflow writeback to Jira/GitHub.

Quick Start

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

Example 1: Mandatory Only

This is the minimum required configuration to get the server working.

{
  "mcpServers": {
    "bob-mcp-vuln-workflow": {
      "command": "npx",
      "args": ["-y", "bob-mcp-vuln-workflow"],
      "env": {
        "JIRA_BASE_URL": "https://jsw.ibm.com",
        "JIRA_PAT": "your-jira-pat",
        "JIRA_USERNAME": "your-jira-username",
        "GITHUB_BASE_URL": "https://github.ibm.com/api/v3",
        "GITHUB_TOKEN": "your-github-token"
      }
    }
  }
}

Example 2: Mandatory + Email

Adds email notifications for workflow summaries.

{
  "mcpServers": {
    "bob-mcp-vuln-workflow": {
      "command": "npx",
      "args": ["-y", "bob-mcp-vuln-workflow"],
      "env": {
        "JIRA_BASE_URL": "https://jsw.ibm.com",
        "JIRA_PAT": "your-jira-pat",
        "JIRA_USERNAME": "your-jira-username",
        "GITHUB_BASE_URL": "https://github.ibm.com/api/v3",
        "GITHUB_TOKEN": "your-github-token",
        "BOB_AUTOMATION_SMTP_HOST": "smtp.company.com",
        "BOB_AUTOMATION_SMTP_PORT": "587",
        "BOB_AUTOMATION_SMTP_USER": "your-smtp-user",
        "BOB_AUTOMATION_SMTP_PASS": "your-smtp-password",
        "BOB_AUTOMATION_EMAIL_FROM": "[email protected]",
        "BOB_AUTOMATION_EMAIL_TO": "[email protected]"
      }
    }
  }
}

Example 3: All Parameters

Complete configuration with all optional parameters for customization.

{
  "mcpServers": {
    "bob-mcp-vuln-workflow": {
      "command": "npx",
      "args": ["-y", "bob-mcp-vuln-workflow"],
      "env": {
        "JIRA_BASE_URL": "https://jsw.ibm.com",
        "JIRA_PAT": "your-jira-pat",
        "JIRA_USERNAME": "your-jira-username",
        "GITHUB_BASE_URL": "https://github.ibm.com/api/v3",
        "GITHUB_TOKEN": "your-github-token",
        "DEFAULT_READY_STATUS": "Ready To Deploy",
        "DEFAULT_INVESTIGATING_STATUS": "Investigating",
        "DEFAULT_DEVIATION_STATUS": "Deviation Request",
        "BOB_AUTOMATION_SMTP_HOST": "smtp.company.com",
        "BOB_AUTOMATION_SMTP_PORT": "587",
        "BOB_AUTOMATION_SMTP_USER": "your-smtp-user",
        "BOB_AUTOMATION_SMTP_PASS": "your-smtp-password",
        "BOB_AUTOMATION_EMAIL_FROM": "[email protected]",
        "BOB_AUTOMATION_EMAIL_TO": "[email protected]",
        "LOG_LEVEL": "info"
      }
    }
  }
}

Tools

  • check_setup — Validate Jira/GitHub configuration
  • post_jira_comment — Post comment to Jira issue
  • get_jira_transitions — Fetch valid Jira transitions
  • transition_jira_issue — Transition Jira issue status
  • post_github_issue_comment — Post comment to GitHub issue
  • generate_workflow_comment — Generate structured comment body
  • recommend_next_status — Recommend next Jira status
  • send_workflow_summary_email — Send workflow summary email

Prompts

  • update-vulnerability-workflow — Interactively write back to source
  • transition-jira-vulnerability — Interactively transition Jira issue
  • comment-on-source-issue — Interactively add comment to source

Environment Variables Reference

Required

| Variable | Description | |----------|-------------| | JIRA_BASE_URL | Jira base URL (e.g., https://jsw.ibm.com) | | JIRA_PAT | Jira Personal Access Token | | JIRA_USERNAME | Jira username | | GITHUB_BASE_URL | GitHub API base URL | | GITHUB_TOKEN | GitHub personal access token |

Optional - Jira Status

| Variable | Description | Default | |----------|-------------|---------| | DEFAULT_READY_STATUS | Status for ready to deploy | Ready To Deploy | | DEFAULT_INVESTIGATING_STATUS | Status for investigating | Investigating | | DEFAULT_DEVIATION_STATUS | Status for deviation request | Deviation Request |

Optional - Email

| Variable | Description | |----------|-------------| | BOB_AUTOMATION_SMTP_HOST | SMTP server host | | BOB_AUTOMATION_SMTP_PORT | SMTP port (587 or 465) | | BOB_AUTOMATION_SMTP_USER | SMTP username | | BOB_AUTOMATION_SMTP_PASS | SMTP password | | BOB_AUTOMATION_EMAIL_FROM | Sender email address | | BOB_AUTOMATION_EMAIL_TO | Default recipient email |

Optional - Other

| Variable | Description | |----------|-------------| | LOG_LEVEL | Logging level (e.g., info, warn, error) |

IBM Bob Limitations

This server uses IBM internal APIs and requires IBM network access.