1. Install Dependencies
$ git clone https://github.com/BlueLotusX/SecureAgent.git
$ cd SecureAgent
$ pip install -r requirements.txt
$ pip install playwright && playwright install chromium
2. Configure
Edit config.py to set your LLM and MCP backends:
base_url = "http://127.0.0.1:11434"
model = "qwen2.5"
transport = "stdio"
3. Launch
$ python webui/app.py
$ python webui/app.py --host 0.0.0.0 --port 8080
The Web UI will start an MCP server in the background, create a singleton SecureAgent instance, and be ready for conversations with the full multi-agent + tools + RAG + skills + defense stack.