#!/bin/bash
# Setup script for MCP AgentRun Server
set -e
echo "Setting up MCP AgentRun Server..."
# Check if UV is installed
if ! command -v uv &> /dev/null; then
echo "UV not found. Installing UV..."
curl -LsSf https://astral.sh/uv/install.sh | sh
echo "Please restart your shell or run: source ~/.bashrc"
echo "Then run this script again."
exit 1
fi
git clone https://github.com/Jonathan-Adly/agentrun
uv sync