"""
NoctisAI - Malware Development & Threat Intelligence MCP
========================================================
A specialized MCP (Model Context Protocol) for advanced malware development,
threat intelligence, and offensive security operations.
Author: Yenn503
License: MIT
Version: 1.0.0
"""
__version__ = "1.0.0"
__author__ = "Yenn503"
__license__ = "MIT"
# Core imports
from .mcp.noctis_mcp import NoctisMCP
from .services.noctis_server import NoctisServer
__all__ = [
"NoctisMCP",
"NoctisServer",
"__version__",
"__author__",
"__license__"
]