16 lines
295 B
Python
Executable File
16 lines
295 B
Python
Executable File
#!/usr/bin/env python3
|
|
"""
|
|
MCP Browser Interactive Mode Launcher
|
|
"""
|
|
|
|
import sys
|
|
import asyncio
|
|
from pathlib import Path
|
|
|
|
# Add the package to path
|
|
sys.path.insert(0, str(Path(__file__).parent))
|
|
|
|
from mcp_browser.interactive_client import main
|
|
|
|
if __name__ == "__main__":
|
|
asyncio.run(main()) |