
Security News
Axios Maintainer Confirms Social Engineering Attack Behind npm Compromise
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.
@compligent-mcp/rmf
Advanced tools
Compligent MCP Client - NIST Risk Management Framework with Prompts and Resources (connects to hosted compliance database)
Compligent MCP Client for NIST Risk Management Framework (RMF)
Thin client connecting to hosted RMF compliance service via Model Context Protocol (MCP)
This package provides access to the comprehensive NIST Risk Management Framework (RMF) through a lightweight client that connects to Compligent's hosted compliance database. Perfect for risk assessment, continuous monitoring, and RMF lifecycle management.
npx without local setupnpx @compligent-mcp/rmf
Add to your Claude Desktop MCP configuration:
{
"mcpServers": {
"rmf": {
"command": "npx",
"args": ["-y", "@compligent-mcp/rmf@latest"],
"env": { "MCP_TRANSPORT": "stdio" }
}
}
}
list_rmf_steps - All 7 RMF steps (PREPARE, CATEGORIZE, SELECT, IMPLEMENT, ASSESS, AUTHORIZE, MONITOR)get_rmf_step - Detailed step information with tasksget_rmf_task - Individual task detailssearch_rmf_tasks - Find tasks by keywordcalculate_rmf_risk_level - Risk calculation enginegenerate_rmf_risk_matrix - Visual risk heat mapsgenerate_rmf_risk_register - Comprehensive risk registers with POA&M integrationgenerate_rmf_checklist - Step-specific implementation checklistsgenerate_rmf_step_playbook - Customized implementation guidesgenerate_rmf_responsibility_matrix - RACI matrices for tasksgenerate_rmf_iscm_strategy - Monitoring strategy developmentdefine_rmf_monitoring_metrics - KPIs, KRIs, and alert criteriacreate_rmf_dashboard_template - Executive and operational dashboardsget_rmf_task_details - Complete task information with outputs, inputs, responsibilitiesget_rmf_role_responsibilities - Role definitions with task assignmentsget_rmf_task_discussion - Implementation guidance and best practicesget_rmf_reference_documents - Related NIST publicationsget_rmf_sdlc_integration - RMF tasks mapped to SDLC phasesrmf_categorization_wizard)Interactive guidance for FIPS 199 system categorization with:
Comprehensive implementation support for RMF steps and tasks with:
rmf://dashboard/lifecycle)Real-time view of RMF pipeline with:
// List all RMF steps
const steps = await mcp.callTool('list_rmf_steps', {});
// Get specific step details
const prepareStep = await mcp.callTool('get_rmf_step', {
step_id: 'P'
});
// Calculate risk level
const riskLevel = await mcp.callTool('calculate_rmf_risk_level', {
threat_likelihood: 'High',
impact_level: 'Moderate',
control_effectiveness: 'Partially Effective'
});
// System categorization wizard
const categorization = await mcp.getPrompt('rmf_categorization_wizard', {
system_name: 'Customer Portal',
system_type: 'web-application',
data_sensitivity: 'high'
});
// Access RMF lifecycle dashboard
const dashboard = await mcp.readResource('rmf://dashboard/lifecycle');
# Test tool listing
echo '{"jsonrpc":"2.0","method":"tools/list","id":1}' | npx @compligent-mcp/rmf
# Test RMF steps
echo '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"list_rmf_steps","arguments":{}},"id":2}' | npx @compligent-mcp/rmf
# Test prompts
echo '{"jsonrpc":"2.0","method":"prompts/list","id":3}' | npx @compligent-mcp/rmf
# Test resources
echo '{"jsonrpc":"2.0","method":"resources/list","id":4}' | npx @compligent-mcp/rmf
This thin client connects to Compligent's hosted RMF service:
MCP Client Usage: This is an MCP client designed for integration with AI assistants and MCP-compatible tools.
Recommended Usage:
npx @compligent-mcp/rmf for testingnpm install -g @compligent-mcp/rmfNot Recommended: Direct command-line usage (this is an MCP client, not a CLI tool)
Optional API key authentication:
export COMPLIGENT_API_KEY=your-api-key
npx @compligent-mcp/rmf
MIT License - see LICENSE file for details.
Compligent MCP Platform | Streamlining Compliance Through AI
FAQs
Compligent MCP Client - NIST Risk Management Framework with Prompts and Resources (connects to hosted compliance database)
We found that @compligent-mcp/rmf demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.

Security News
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.