We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/thomaswtwrt/smar-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
commit-msg•466 B
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
# Check if commitlint is installed
if command -v npx >/dev/null 2>&1; then
if npx --no-install commitlint --version >/dev/null 2>&1; then
npx --no -- commitlint --edit $1
else
echo "commitlint is not installed. Skipping commit message validation."
echo "Run 'npm install' to install dependencies."
exit 0
fi
else
echo "npx is not available. Skipping commit message validation."
exit 0
fi