We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/evolsb/fast-intercom-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
example-pre-commit-hook•678 B
#!/bin/bash
# Example pre-commit hook for Git
# Copy this file to .git/hooks/pre-commit and make it executable
# Exit on any error
set -e
echo "🔍 Running pre-commit validation..."
# Change to repository root
cd "$(git rev-parse --show-toplevel)"
# Run validation script in fast mode for pre-commit speed
if ./scripts/pre_commit_validation.sh --fast --quiet; then
echo "✅ Pre-commit validation passed"
exit 0
else
echo "❌ Pre-commit validation failed"
echo ""
echo "💡 Tip: Run './scripts/pre_commit_validation.sh --fix' to auto-fix issues"
echo "💡 Tip: Run './scripts/pre_commit_validation.sh --verbose' for detailed output"
exit 1
fi