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

16
mealie-mcp-bundle/server/run.py Executable file
View File

@@ -0,0 +1,16 @@
#!/usr/bin/env python3
import os
import sys
import subprocess
# Get the directory where this script is located
script_dir = os.path.dirname(os.path.abspath(__file__))
# Path to the venv python
venv_python = os.path.join(script_dir, 'venv', 'bin', 'python')
# Path to the actual server
server_py = os.path.join(script_dir, 'server.py')
# Execute the server with the venv python
os.execv(venv_python, [venv_python, server_py])