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
Maintainers
Readme
Framework MCP
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-mcpInstall from source
git clone https://github.com/therealcybermattlee/FrameworkMCP.git
cd FrameworkMCP
npm install && npm run buildConfiguration
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:8080API 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=trueThe 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
PORTenv 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 HTTPLicense
Creative Commons Attribution 4.0 International License - Cyber RISE, Inc
