mirror of
https://github.com/BillyOutlast/kali-mcp.git
synced 2026-07-01 16:04:12 -04:00
11 lines
274 B
Python
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() |