All-in-one security testing toolbox that brings together popular open source tools through a single MCP interface. Connected to an AI agent, it enables tasks like pentesting, bug bounty hunting, threat hunting, and more.
A comprehensive security operations platform that integrates multiple security tools into a unified interface. This platform provides a centralized way to run various security scanning and testing tools.
Clone the repository:
git clone https://github.com/securityfortech/secops-mcp.git
cd secops-mcp
Build the Docker image:
docker build -t secops-mcp .
Run the container:
docker run -it --rm secops-mcp
Clone the repository:
git clone https://github.com/securityfortech/secops-mcp.git
cd secops-mcp
Create and activate a virtual environment:
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
Install dependencies:
pip install -r requirements.txt
Install required tools:
tools/
directoryStart the application:
python main.py
The application will provide a unified interface for running various security tools.
Each tool returns results in a consistent JSON format:
{
"success": boolean,
"error": string (if error),
"results": object (if success)
}
Each tool can be configured through its respective wrapper in the tools/
directory. Configuration options include:
This project is licensed under the MIT License - see the LICENSE file for details.