#!/usr/bin/env python3
"""
Nife MCP Server Launcher
"""
import sys
import os

# Add the src directory to the Python path
sys.path.insert(0, os.path.join(os.path.dirname(__file__), '..', 'src'))

# Run the intelligent main
from nife_mcp_server.intelligent_main import main
import asyncio

if __name__ == "__main__":
    asyncio.run(main())
