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

framework-mcp

v2.6.2

Published

Pure Data Provider architecture serving authentic CIS Controls Framework data via MCP and HTTP API. Empowers LLMs with authoritative safeguards data for analysis. Supports Microsoft Copilot custom connectors and cloud deployments.

Readme

Framework MCP

npm version License: CC BY 4.0

A Model Context Protocol (MCP) server providing authoritative CIS Controls Framework data for LLM-driven vendor capability analysis. Access all 153 CIS v8.1 safeguards through MCP or HTTP API.

Quick Start

Install from npm

npm install -g framework-mcp

Install from source

git clone https://github.com/therealcybermattlee/FrameworkMCP.git
cd FrameworkMCP
npm install && npm run build

Configuration

MCP Integration (Claude Code)

Add to ~/.config/claude-code/mcp.json:

{
  "mcpServers": {
    "framework-analyzer": {
      "command": "framework-mcp",
      "args": [],
      "env": {}
    }
  }
}

Or if installed from source:

{
  "mcpServers": {
    "framework-analyzer": {
      "command": "node",
      "args": ["/path/to/FrameworkMCP/dist/index.js"],
      "env": {}
    }
  }
}

HTTP API (Local)

npm run start:http
# Server runs on http://localhost:8080

API Reference

MCP Tools

| Tool | Description | |------|-------------| | get_safeguard_details | Get detailed safeguard breakdown (governance elements, core requirements, sub-taxonomical elements, implementation suggestions) | | list_available_safeguards | List all 153 CIS safeguards |

HTTP Endpoints

| Endpoint | Description | |----------|-------------| | GET /health | Health check | | GET /api | API documentation | | GET /api/safeguards | List all safeguards | | GET /api/safeguards/:id | Get safeguard details | | GET /api/safeguards/:id?include_examples=true | Include implementation examples |

Usage Examples

MCP (Claude Code)

claude-code "Use get_safeguard_details for safeguard 1.1"
claude-code "List all available CIS safeguards"

HTTP API

curl http://localhost:8080/api/safeguards
curl http://localhost:8080/api/safeguards/1.1
curl http://localhost:8080/api/safeguards/5.1?include_examples=true

Assessing a Tool Against a Safeguard

This framework assesses one tool in isolation against one safeguard. Satisfying a safeguard is a portfolio property — it typically takes several tools across several asset types. No verdict below means a safeguard is met, covered, or compliant.

Element completeness — what this framework can assess

A tool is assessed on how many of the safeguard's taxonomical elements it addresses:

| elementsAddressed | Meaning | |------|-------------| | all | The tool addresses every taxonomical element of the safeguard | | some | The tool addresses some, but not all, taxonomical elements | | none | The tool addresses no taxonomical elements of this safeguard |

The companion notAddressed list — which elements the tool doesn't reach — is often more useful than the verdict itself, because it names what you still need.

Estate scope — what this framework cannot assess

elementsAddressed: "all" is not estate coverage. A tool that addresses every element of safeguard 9.2 still only protects the devices it is actually deployed on. Whether your estate is protected depends on your asset inventory, deployment footprint, and licensing — none of which are visible in a vendor response. Every assessment therefore carries a scopeLimits block stating what remains unassessed.

Deliberately absent vocabulary: meets, satisfies, covers, achieves, compliant. Each of those terminates the sentence and implies the practitioner is finished.

GRC / policy services

Whether a tool is a GRC or policy service is a single yes/no question asked once per tool (isGrcOrPolicyService), not a per-safeguard classification — it is a property of the product, not of its relationship to any one safeguard.

Cloud Deployment

The HTTP server is compatible with any cloud platform that supports Node.js.

  • Build: npm install && npm run build
  • Start: npm run start:http
  • Port: 8080 (configurable via PORT env var)
  • Health check: GET /health

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | PORT | 8080 | HTTP server port | | NODE_ENV | development | Environment mode | | ALLOWED_ORIGINS | localhost:3000 | CORS allowed origins (comma-separated) | | RATE_LIMIT_WINDOW_MS | 60000 | Rate limit window (ms) | | RATE_LIMIT_MAX | 100 | Max requests per window |

CIS Controls Coverage

  • 153 safeguards across 18 controls
  • CIS Controls v8.1 framework
  • Color-coded elements: Governance (orange), Core (green), Sub-elements (yellow), Suggestions (gray)

Development

npm run build        # Compile TypeScript
npm run start:mcp    # Run MCP server
npm run start:http   # Run HTTP server
npm run dev          # Build + run MCP
npm run dev:http     # Build + run HTTP

License

Creative Commons Attribution 4.0 International License - Cyber RISE, Inc

Support