1. Conduid
  2. Developer Tools
  3. Secureframe
MCP server · Developer Tools

Secureframe

MCP server for interacting with Secureframe

Unclaimed MIT last commit 11 months ago devtools
51Fair

Scored 4 months ago · breakdown

About Secureframe

Secureframe is an MCP server published by secureframe in the Developer Tools category: mCP server for interacting with Secureframe. It has been installed 0 times through Conduid.

The repository has 6 stars and 4 forks, with the last commit 11 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx secureframe-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Secureframe

Powered by Claude · Grounded in docs

I know everything about Secureframe. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

Secureframe MCP Server

This Model Context Protocol server provides read-only access to Secureframe's compliance automation platform for AI assistants like Claude and Cursor. Query security controls, monitor compliance tests, and access audit data across SOC 2, ISO 27001, CMMC, FedRAMP, and other frameworks.

⚠️ Disclaimer: This MCP server is currently in public beta and grants AI assistants read-only access to your Secureframe compliance data. While the server only performs read operations, always review and validate AI-generated insights before making any compliance or security decisions. You are responsible for ensuring all AI outputs align with your organization's compliance policies and security standards.


🚀 Quick Start

Prerequisites

  • Python 3.7 or higher
  • Secureframe API credentials (Get them here)
  • Claude Desktop, Cursor IDE, or any MCP-compatible tool

Installation

# Clone and setup
git clone https://github.com/secureframe/secureframe-mcp-server.git
cd secureframe-mcp-server

# Create virtual environment (recommended)
python -m venv venv
source venv/bin/activate  # On Windows: venv\Scripts\activate

# Install dependencies
pip install -r requirements.txt

# Configure credentials
cp env.example .env
# Edit .env with your API credentials

🔧 Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "secureframe": {
      "command": "python",
      "args": ["/absolute/path/to/secureframe-mcp-server/main.py"],
      "env": {
        "SECUREFRAME_API_KEY": "your_api_key",
        "SECUREFRAME_API_SECRET": "your_api_secret",
        "SECUREFRAME_API_URL": "https://api.secureframe.com"
      }
    }
  }
}

Cursor IDE

Configure in Cursor's MCP settings:

{
  "mcpServers": {
    "Secureframe": {
      "command": "python",
      "args": ["/absolute/path/to/secureframe-mcp-server/main.py"],
      "env": {
        "SECUREFRAME_API_KEY": "your_api_key",
        "SECUREFRAME_API_SECRET": "your_api_secret",
        "SECUREFRAME_API_URL": "https://api.secureframe.com"
      }
    }
  }
}

Environment Variables

Variable Description Required
SECUREFRAME_API_KEY Your Secureframe API key
SECUREFRAME_API_SECRET Your Secureframe API secret
SECUREFRAME_API_URL API endpoint (defaults to US region)

Regional Endpoints:

  • 🇺🇸 US: https://api.secureframe.com (default)
  • 🇬🇧 UK: https://api-uk.secureframe.com

📋 Available Tools (11 Read-Only Operations)

Tool Purpose
list_controls List security controls across frameworks with filtering
list_tests List compliance tests with pass/fail status
list_users List personnel and their compliance status
list_devices List managed devices and security compliance
list_user_accounts List user accounts from integrations
list_tprm_vendors List third-party risk management vendors
list_vendors List vendors (legacy API)
list_frameworks List available compliance frameworks
list_repositories List code repositories and audit scope
list_integration_connections List integration status and connections
list_repository_framework_scopes List framework scopes for specific repositories

💡 Usage Examples

Monitor Failing Controls

# Find controls that need attention for SOC 2
list_controls(
    search_query="health_status:unhealthy AND frameworks:soc2_alpha",
    per_page=50
)

Find Failing Tests

# Get top 5 failing tests
list_tests(
    search_query="health_status:fail",
    per_page=5
)

Review High-Risk Vendors

# Find high-risk vendors
list_tprm_vendors(
    search_query="risk_level:High",
    per_page=20
)

Check User Compliance

# Find inactive contractors
list_users(
    search_query="employee_type:contractor AND active:false",
    per_page=100
)

🔍 Search Capabilities

The server supports powerful Lucene query syntax for filtering:

Example Queries

Find critical failing tests:

health_status:fail AND frameworks:soc2_alpha

Locate inactive users:

active:false AND employee_type:contractor

Search high-risk vendors:

risk_level:High AND archived:false

Common Search Fields

  • health_status - For controls: healthy, unhealthy, draft. For tests: pass, fail, disabled
  • enabled - true/false
  • test_type - integration, upload
  • active - true/false
  • email - User email address
  • employee_type - employee, contractor, non_employee, auditor, external
  • in_audit_scope - true/false
  • risk_level - Low, Medium, High
  • status - draft, completed
  • archived - true/false
  • private - true/false
  • in_audit_scope - true/false

🛠️ Development

Debug with MCP Inspector

npx @modelcontextprotocol/inspector python main.py

📚 Resources


🎯 Obtaining API Credentials

  1. Log into Secureframe
  2. Navigate to Profile Picture → Company Settings → API Keys
  3. Click Create API Key
  4. Save your credentials securely (secret shown only once)

⚖️ License

This project is licensed under the MIT License. See LICENSE for details.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Secureframe

How do I install Secureframe?

Run npx secureframe-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Secureframe safe to use with an AI agent?

Its trust score is 51 out of 100 (fair). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Secureframe still maintained?

The last commit was 11 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.