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

pci-dss-compliance-mcp

v0.1.0

Published

MCP server for PCI DSS v4.0 compliance — browse requirements, assess compliance readiness, generate policies, evidence checklists, and gap analysis for organizations handling payment card data

Readme

pci-dss-compliance-mcp

npm version License: MIT

MCP server for PCI DSS v4.0 compliance — browse requirements, assess compliance readiness, generate policies, evidence checklists, and gap analysis for organizations handling payment card data.

Tools

| Tool | Description | |------|-------------| | browse_requirements | Browse PCI DSS v4.0 requirements by family (1-12), priority, SAQ type, or keyword search | | assess_readiness | Score your compliance readiness based on implemented requirements, with per-family breakdown | | generate_policy | Generate policy templates for specific PCI DSS requirements with customizable organization details | | gap_analysis | Identify missing requirements with prioritized remediation roadmap and effort estimates | | evidence_template | Generate evidence collection templates for QSA assessments and audits | | saq_guide | Determine which Self-Assessment Questionnaire (SAQ) type applies to your business |

Coverage

All 12 PCI DSS v4.0 requirement families:

  1. Install and Maintain Network Security Controls
  2. Apply Secure Configurations to All System Components
  3. Protect Stored Account Data
  4. Protect Cardholder Data with Strong Cryptography During Transmission
  5. Protect All Systems and Networks from Malicious Software
  6. Develop and Maintain Secure Systems and Software
  7. Restrict Access to System Components and Cardholder Data by Business Need to Know
  8. Identify Users and Authenticate Access to System Components
  9. Restrict Physical Access to Cardholder Data
  10. Log and Monitor All Access to System Components and Cardholder Data
  11. Test Security of Systems and Networks Regularly
  12. Support Information Security with Organizational Policies and Programs

Installation

npx pci-dss-compliance-mcp

Or install globally:

npm install -g pci-dss-compliance-mcp

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "pci-dss-compliance": {
      "command": "npx",
      "args": ["-y", "pci-dss-compliance-mcp"]
    }
  }
}

Usage with VS Code

Add to your .vscode/mcp.json:

{
  "servers": {
    "pci-dss-compliance": {
      "command": "npx",
      "args": ["-y", "pci-dss-compliance-mcp"]
    }
  }
}

Examples

Browse requirements by family

Use browse_requirements with family: 3

Browse critical requirements

Use browse_requirements with priority: "critical"

Search requirements by keyword

Use browse_requirements with keyword: "encryption"

Assess compliance readiness

Use assess_readiness with implementedRequirements: ["1.1", "1.2", "2.1", "3.1", "3.2", "8.1", "8.3"]

Generate a policy

Use generate_policy with requirementId: "3.4", organizationName: "Acme Payments"

Gap analysis with timeline

Use gap_analysis with implementedRequirements: ["1.1", "2.1", "8.1"], targetDate: "2026-12-01", teamSize: "small"

Evidence template for QSA

Use evidence_template with requirementId: "3.4", format: "qsa_assessment"

Determine SAQ type

Use saq_guide with acceptsCards: true, ecommerce: true, redirectsToPaymentPage: true, storesCardData: false

License

MIT

Links