We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/wblair8689/project-context-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start_dashboard.shβ’1.33 KiB
#!/bin/bash
# Web Dashboard Startup Script
# Launches the AI Game Evolution Platform Web Dashboard
echo "π AI Game Evolution Platform - Web Dashboard"
echo "=============================================="
# Change to the project context MCP directory
cd /Users/williamblair/AI-Game-Evolution-Platform/project_context_mcp
# Check if virtual environment exists
if [ ! -d "web_env" ]; then
echo "β Virtual environment not found. Creating one..."
python3 -m venv web_env
echo "β Virtual environment created"
fi
# Activate virtual environment
echo "π§ Activating virtual environment..."
source web_env/bin/activate
# Check if dependencies are installed
echo "π¦ Checking dependencies..."
python -c "import flask, flask_socketio" 2>/dev/null
if [ $? -ne 0 ]; then
echo "π¦ Installing web dependencies..."
pip install flask flask-socketio
echo "β Dependencies installed"
else
echo "β Dependencies already installed"
fi
# Launch dashboard
echo ""
echo "π Starting Web Dashboard..."
echo "π Project: AI Game Evolution Platform"
echo "π URL: http://127.0.0.1:5000"
echo "π‘ Open the URL in your browser to see the live dashboard"
echo "π Press Ctrl+C to stop"
echo ""
# Run the dashboard
python web_dashboard.py --project-root "/Users/williamblair/AI-Game-Evolution-Platform" --port 5000 --host 127.0.0.1