run.sh•1.72 kB
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#!/bin/bash
# Run the SeaTunnel MCP server
# This script sets up the environment and runs the server
# Check if virtual environment exists, if not create it
if [ ! -d ".venv" ]; then
echo "Creating virtual environment..."
python -m venv .venv
fi
# Activate virtual environment
source .venv/bin/activate
# Install dependencies if needed
if ! command -v uvicorn &> /dev/null; then
echo "Installing dependencies..."
pip install -e .
fi
# Check if .env file exists, if not create from example
if [ ! -f ".env" ]; then
if [ -f ".env.example" ]; then
echo "Creating .env file from .env.example..."
cp .env.example .env
echo "Please review and update the .env file with your SeaTunnel API settings."
else
echo "Warning: .env.example file not found. Please create a .env file manually."
fi
fi
# Run the server
echo "Starting SeaTunnel MCP server..."
python -m src.seatunnel_mcp