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

qualys-mcp-server

v0.1.0

Published

MCP server for Qualys vulnerability management and compliance platform

Readme

Qualys MCP Server

Standalone MCP server for Qualys vulnerability management and compliance platform.

Installation

npm install -g qualys-mcp-server

Configuration

| Variable | Required | Description | Default | |---|---|---|---| | QUALYS_MCP_USERNAME | Yes | Qualys platform username | — | | QUALYS_MCP_PASSWORD | Yes | Qualys platform password | — | | QUALYS_MCP_POD | Yes | Platform POD (US1-4, EU1-3, IN1, CA1, AE1, UK1, AU1, KSA1) | — | | QUALYS_MCP_BASE_URL | No | Override auto-derived API URL | (from POD) | | QUALYS_MCP_GATEWAY_URL | No | Override auto-derived gateway URL | (from POD) | | QUALYS_MCP_SSL_VERIFY | No | TLS verification | true | | QUALYS_MCP_TIMEOUT_MS | No | Request timeout | 60000 | | QUALYS_MCP_CACHE_TTL_MS | No | Cache TTL | 300000 |

Client Configurations

VS Code (settings.json)

{
  "mcp": {
    "servers": {
      "qualys": {
        "command": "npx",
        "args": ["-y", "qualys-mcp-server"],
        "env": {
          "QUALYS_MCP_USERNAME": "your-username",
          "QUALYS_MCP_PASSWORD": "your-password",
          "QUALYS_MCP_POD": "US1"
        }
      }
    }
  }
}

Claude Desktop

{
  "mcpServers": {
    "qualys": {
      "command": "npx",
      "args": ["-y", "qualys-mcp-server"],
      "env": {
        "QUALYS_MCP_USERNAME": "your-username",
        "QUALYS_MCP_PASSWORD": "your-password",
        "QUALYS_MCP_POD": "US1"
      }
    }
  }
}

Tools

qualys_investigate

Deep-dive any CVE, threat actor, hostname, IP, or free-text topic across Qualys modules.

Parameters:

  • target (string, required) — CVE ID, hostname, IP, or search term
  • depth (enum: quick/standard/deep) — Investigation depth
  • scope (enum: all/vulns/threats/assets/edr/fim) — Module scope

qualys_assess_risk

Cross-domain risk assessment across VMs, cloud, web apps, certificates, and assets.

Parameters:

  • scope (enum: all/cloud/containers/web/certs/assets) — Risk domain
  • tag (string) — Filter by asset tag
  • provider (enum: aws/azure/gcp) — Cloud provider filter
  • assetId (string) — Single asset deep-dive

qualys_check_compliance

Compliance posture checking for regulatory frameworks.

Parameters:

  • framework (enum: PCI/HIPAA/CIS/NIST/SOC2) — Framework to check
  • includeExceptions (boolean) — Include exception details

qualys_plan_remediation

Patch priorities, deployment status, and mitigation coverage.

Parameters:

  • scope (enum: all/patches/mitigations/program) — Remediation scope
  • severity (enum: critical/high/moderate) — Severity filter
  • cves (string[]) — Specific CVEs to check
  • qids (number[]) — Qualys QIDs to check

qualys_security_overview

Daily/weekly/monthly security briefing.

Parameters:

  • period (enum: today/week/month) — Time period
  • quick (boolean) — Fast snapshot vs full briefing

qualys_reports

Report management.

Parameters:

  • action (enum: list/generate/download/status) — Action
  • reportId (string) — Report ID
  • reportType (string) — Report type for generation
  • format (enum: pdf/csv/xml) — Output format

qualys_cache_status

View or clear the API response cache.

Parameters:

  • action (enum: view/clear) — Cache action
  • module (string) — Module cache to clear

Supported PODs

US1, US2, US3, US4, EU1, EU2, EU3, IN1, CA1, AE1, UK1, AU1, KSA1

License

MIT