18 lines
364 B
Python
18 lines
364 B
Python
#!/usr/bin/env python3
|
|
"""Launch the repository-local Labyricorn MCP package over stdio."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
|
|
SITE_ROOT = Path(__file__).resolve().parents[1]
|
|
sys.path.insert(0, str(SITE_ROOT))
|
|
|
|
from labyricorn_mcp.__main__ import main # noqa: E402
|
|
|
|
|
|
if __name__ == "__main__":
|
|
raise SystemExit(main())
|