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
pre-commit•410 B
#!/usr/bin/env bash
# Check if any shell scripts were changed
if ! scripts/shellcheck/validate_shell_scripts.sh; then
echo "Shell script validation failed. Please fix the issues before committing."
exit 1
fi
# Check if any Kotlin files were changed
if ! scripts/ktfmt/apply_ktfmt.sh; then
echo "Kotlin formatting validation failed. Please fix the issues before committing."
exit 1
fi
exit 0