We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/k3nn3dy-ai/kali-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•273 B
"""
Entry point for the Kali MCP Server.
This module allows the package to be executed directly using 'python -m kali_mcp_server'.
"""
import sys
from .server import main
if __name__ == "__main__":
# Pass the exit code from main() to the system
sys.exit(main())