We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IBM/ibmi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
############################################################################
# Container Entrypoint script
############################################################################
if [[ "$PRINT_ENV_ON_LOAD" = true || "$PRINT_ENV_ON_LOAD" = True ]]; then
echo "=================================================="
printenv
echo "=================================================="
fi
if [[ "$WAIT_FOR_DB" = true || "$WAIT_FOR_DB" = True ]]; then
dockerize \
-wait tcp://$DB_HOST:$DB_PORT \
-timeout 300s
fi
############################################################################
# Start App
############################################################################
case "$1" in
chill)
;;
*)
echo "Running: $@"
exec "$@"
;;
esac
echo ">>> Hello World!"
while true; do sleep 18000; done