This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| """ | |
| Petri Security Audit MCP Server | |
| Provides tools to run LLM security audits using Petri's 111 attack scenarios | |
| """ | |
| import asyncio | |
| import json | |
| import os | |
| from datetime import datetime | |
| from pathlib import Path |