File size: 297 Bytes
3de42e7
 
 
 
 
 
c7f1596
 
 
3de42e7
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env python3
"""Run the Stack 2.9 MCP Server"""

import sys
import os

# Ensure project root is on the path
project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
sys.path.insert(0, project_root)

from src.mcp_server import main

if __name__ == "__main__":
    main()