MCP server for interacting with Secureframe
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"secureframe": {
"env": {
"SECUREFRAME_API_KEY": "your_api_key",
"SECUREFRAME_API_URL": "https://api.secureframe.com",
"SECUREFRAME_API_SECRET": "your_api_secret"
},
"args": [
"/absolute/path/to/secureframe-mcp-server/main.py"
],
"command": "python"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP server for interacting with Secureframe
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
This server is missing a description.If you've used it, help the community.
Add informationBe the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in security
An evil MCP server used for redteam testing
AI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Proof primitive for AI agents on MultiversX. Anchor file hashes on-chain as verifiable proofs.
Security-first platform for AI agents. 38 specialized agents, 15 AI-powered extensions, zero-knowledge multi-agent orchestration. SENTINEL WAF, Ed25519 auth, 2.6M grounding facts.
MCP Security Weekly
Get CVE alerts and security updates for Secureframe Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
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.
# 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
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"
}
}
}
}
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"
}
}
}
}
| 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:
https://api.secureframe.com (default)https://api-uk.secureframe.com| 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 |
# Find controls that need attention for SOC 2
list_controls(
search_query="health_status:unhealthy AND frameworks:soc2_alpha",
per_page=50
)
# Get top 5 failing tests
list_tests(
search_query="health_status:fail",
per_page=5
)
# Find high-risk vendors
list_tprm_vendors(
search_query="risk_level:High",
per_page=20
)