We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/zillow/auto-mobile'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
validate_lychee.sh•285 B
#!/usr/bin/env bash
# Validate lychee configuration and run link checking
echo "Validating lychee configuration..."
# Check if lychee is installed
if ! command -v lychee >/dev/null 2>&1; then
echo "Error: lychee is not installed"
exit 1
fi
echo "lychee is available"
exit 0