We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/tosin2013/documcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pre-commit•341 B
# Skip pre-commit hooks in CI environments or when HUSKY is disabled
if [ "$CI" = "true" ] || [ "$HUSKY" = "0" ] || [ -n "$GITHUB_ACTIONS" ]; then
exit 0
fi
# Check if pre-commit tool is available
if ! command -v pre-commit >/dev/null 2>&1; then
echo "⚠️ pre-commit tool not found, skipping hooks"
exit 0
fi
pre-commit run "$@"