#!/bin/bash
# CodeCompass MCP Server Startup Script
# This script starts the CodeCompass MCP server with proper configuration
echo "š Starting CodeCompass MCP Server..."
# Set environment variables
export NODE_ENV=production
# Optional: Set GitHub token if available (improves rate limits)
# export GITHUB_TOKEN=your_github_token_here
# Change to the server directory
cd "$(dirname "$0")"
# Start the server
node build/index.js
echo "š CodeCompass MCP Server stopped."