Add local repository MCP server
Deploy production / deploy (push) Successful in 21s

This commit is contained in:
2026-08-23 10:48:33 -07:00
parent a79d5b0368
commit fe6025fa63
12 changed files with 1923 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/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())