Files
2025-05-16 12:43:03 +01:00

11 lines
274 B
Python

"""
Kali MCP Server - Main Entry Point
This module serves as the entry point for the Kali MCP Server, which provides
AI assistants with access to Kali Linux security tools via MCP protocol.
"""
from kali_mcp_server.server import main
if __name__ == "__main__":
main()