11 lines
286 B
Bash
Executable File
11 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
# Wrapper script for Gemini CLI compatibility
|
|
|
|
# Get the directory of this script
|
|
DIR="$(cd "$(dirname "$0")" && pwd)"
|
|
|
|
# Change to the pal-mcp-server directory
|
|
cd "$DIR"
|
|
|
|
# Execute the Python server with all arguments passed through
|
|
exec .pal_venv/bin/python server.py "$@" |