Files
labyricorn-site/scripts/labyricorn_mcp_server.py
T
Labyricorn fe6025fa63
Deploy production / deploy (push) Successful in 21s
Add local repository MCP server
2026-08-23 10:48:33 -07:00

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())