added all mcp

This commit is contained in:
liph22
2025-12-19 23:59:54 +01:00
parent edfffd76e1
commit 14bc398915
6240 changed files with 2421602 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/usr/bin/env python3
import os
import sys
# Find the bundle path (2 levels up from this script)
script_path = os.path.abspath(__file__)
server_dir = os.path.dirname(script_path)
bundle_dir = os.path.dirname(server_dir)
# Add the venv site-packages to Python path
venv_site_packages = os.path.join(server_dir, 'venv', 'lib', 'python3.13', 'site-packages')
sys.path.insert(0, venv_site_packages)
# Change to the bundle directory
os.chdir(bundle_dir)
# Import and run the server module
sys.path.insert(0, server_dir)
import server