#!/bin/bash
# Simple wrapper to run mcp_runner.sh from the correct directory
# Get the absolute path of this script
SCRIPT_PATH="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)"
cd "$SCRIPT_PATH"
# Run the actual runner script
"$SCRIPT_PATH/scripts/mcp_runner.sh" "$@"