We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/yaniv-golan/mcp-bash-framework'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pre-commit•451 B
#!/usr/bin/env bash
# Local Git pre-commit hook: run shell linting and readme checks before commits.
# To enable, set in this repo:
# git config core.hooksPath hooks
set -euo pipefail
if [ ! -x "./test/lint.sh" ]; then
echo "pre-commit: ./test/lint.sh not found or not executable" >&2
exit 1
fi
./test/lint.sh
# Render README and stage if changed
if [ -x "./scripts/render-readme.sh" ]; then
./scripts/render-readme.sh
git add README.md
fi