We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/trose/ice-locator-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
echo "π³ Starting ICE Locator Docker Services"
# Stop any existing containers
echo "π Stopping existing containers..."
docker-compose down
# Build and start the services
echo "ποΈ Building and starting services..."
docker-compose up -d --build
# Wait for PostgreSQL to be ready
echo "β³ Waiting for PostgreSQL to be ready..."
sleep 10
# Check if PostgreSQL is ready
echo "π Checking PostgreSQL health..."
until docker-compose exec postgres pg_isready -U ice_user -d ice_locator; do
echo "Waiting for PostgreSQL..."
sleep 2
done
echo "β
PostgreSQL is ready!"
# Install required Python packages for the populator
echo "π¦ Installing Python dependencies..."
pip install psycopg2-binary geopy
# Populate the database
echo "π Populating database with comprehensive facility data..."
python populate_docker_db.py
echo "π Docker services are ready!"
echo "π Heatmap API: http://localhost:8000"
echo "π API Documentation: http://localhost:8000/docs"
echo "ποΈ PostgreSQL: localhost:5432 (ice_user/ice_password/ice_locator)"