We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dbalencar/openai-chatbot-weather-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
# Weather AI Chatbot System Startup Script
echo "π€οΈ Weather AI Chatbot System"
echo "================================"
# Check if Python is installed
if ! command -v python3 &> /dev/null; then
echo "β Python 3 is not installed. Please install Python 3.8 or higher."
exit 1
fi
# Check if .env file exists
if [ ! -f ".env" ]; then
echo "β οΈ .env file not found. Creating from template..."
if [ -f "env.example" ]; then
cp env.example .env
echo "β
Created .env file from template"
echo "π Please edit .env file and add your API keys:"
echo " - OPENAI_API_KEY"
echo " - OPENWEATHER_API_KEY"
exit 1
else
echo "β env.example file not found"
exit 1
fi
fi
# Check if requirements are installed
echo "π Checking dependencies..."
if ! python3 -c "import openai, requests, aiohttp" 2>/dev/null; then
echo "π¦ Installing dependencies..."
pip3 install -r requirements.txt
if [ $? -ne 0 ]; then
echo "β Failed to install dependencies"
exit 1
fi
fi
echo "β
Dependencies are installed"
# Run the startup script
echo "π Starting the system..."
python3 start_services.py