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.5.6

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.

Downloads

504

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 with capability-specific prompts | | 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

The 5 Capability Roles

Each safeguard can be assessed against five capability types:

| Role | Description | |------|-------------| | Full | Vendor features map to all sub-taxonomical elements of the safeguard for a particular asset class | | Partial | Vendor features map to some but not all sub-taxonomical elements for a particular asset class | | Facilitates | Tool empowers others to implement better, faster, or more completely, usually with data | | Governance | Policy/process/oversight capabilities | | Validates | Audit/evidence/reporting capabilities |

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