#!/usr/bin/env python3
"""
MIRA MCP Node Bridge
Bridges between Claude's stdio protocol and MIRA's MCP server
"""

import sys
import os
import asyncio
from pathlib import Path

# Add current directory to path for local imports
sys.path.insert(0, str(Path(__file__).parent))

# Import and run the stdio server
from mcp_stdio_server import main

if __name__ == "__main__":
    # Run the async server
    asyncio.run(main())