We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/AlwaysSany/health-api'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start.sh•381 B
#!/bin/bash
set -e
echo "Starting Health Microservice..."
# Activate virtual environment if it exists
if [ -d ".venv" ]; then
source .venv/bin/activate
fi
# Run database migrations
echo "Running database migrations..."
uv run alembic upgrade head
# Start the application
echo "Starting FastAPI application..."
uv run uvicorn app.main:app --reload --host 0.0.0.0 --port 5000