We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/bitgeese/sequential-questioning'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
run_migrations.sh•467 B
#!/bin/bash
set -e
echo "Running database migrations..."
# If the DATABASE_URL environment variable is not set, use a default value
if [ -z "$DATABASE_URL" ]; then
echo "DATABASE_URL is not set. Using default local database."
export DATABASE_URL="postgresql://postgres:postgres@localhost:5432/sequential_questioning"
fi
# Execute the migrations
cd "$(dirname "$0")/.." # Navigate to project root
alembic upgrade head
echo "Migrations completed successfully!"