sec-ops-mcp
Enables LLMs and AI agents to perform defensive security posture assessments, privilege escalation surface audits, and post-quantum cryptography readiness checks through read-only diagnostic tools.
README
sec-ops-mcp
SecOps MCP Server (sec-ops-mcp)
SecOps MCP is an enterprise-grade Model Context Protocol server that arms LLMs and AI agents with direct diagnostic capabilities for defensive security posture assessments, privilege escalation surface auditing, and Post-Quantum Cryptography (PQC) readiness checks.
🛠️ Integrated Tooling Modules
| Module | Scope | Key Diagnostic Capabilities |
|---|---|---|
| QuantumGuard | PQC & Modern Cryptography | Scans x509 cert chains for classical vs. PQC algorithms (FIPS 203/204), evaluates Shor's vulnerability risks on RSA/ECC, and probes TLS endpoints for hybrid key exchange support. |
| PrivScope | Linux Privilege Surface | Identifies dangerous SUID/SGID binaries (GTFOBins mapped), unauthorized cap_setuid/cap_dac_override capabilities, and writable scheduled task matrices. |
| WinScope | Windows Privilege Surface | Audits AlwaysInstallElevated registry bypasses, unquoted service paths running under SYSTEM, and misconfigured service binary DACLs. |
🚀 Quickstart
Prerequisites
- Python 3.10+
pip/venv
Installation
git clone [https://github.com/JoaquinHernandez/sec-ops-mcp.git](https://github.com/JoaquinHernandez/sec-ops-mcp.git)
cd sec-ops-mcp
python3 -m venv .venv
source .venv/bin/activate # On Windows: .venv\Scripts\activate
pip install -r requirements.txt
⚙️ Client Integration
Add this MCP server definition to your client configuration:
Claude Desktop (claude_desktop_config.json)
{
"mcpServers": {
"secops-scanner": {
"command": "/absolute/path/to/sec-ops-mcp/.venv/bin/python",
"args": ["/absolute/path/to/sec-ops-mcp/server.py"]
}
}
}
Cursor / Local MCP Agents
{
"mcpServers": {
"secops-scanner": {
"command": "python",
"args": ["./server.py"],
"cwd": "/absolute/path/to/sec-ops-mcp"
}
}
}
📋 Available MCP Tools
scan_pqc_readiness(target_dir): Evaluates local certificate stores against NIST PQC migration guidelines.scan_tls_quantum_posture(hostname, port): Connects to TLS services to check for post-quantum hybrid key exchange suites.audit_linux_posture(deep_scan): Scans Linux hosts for SUID escalation vectors and capability leaks.audit_windows_posture(): Scans Windows registry and service tables for privilege escalation flaws.
🔒 Security & Defense-in-Depth Notes
This MCP server is built specifically for read-only posture assessment and hardening verification. It performs passive analysis and structured reporting, enabling autonomous defensive assistants to guide engineers through remediation workflows without generating offensive payloads.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.