We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mkreyman/mcp-memory-keeper'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pre-commitโข435 B
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"
echo "๐ Running pre-commit quality checks..."
# Run lint-staged for staged files
npx lint-staged
# Run build to ensure compilation succeeds
echo "๐๏ธ Building project..."
npm run build
# Run type checking
echo "๐ Type checking..."
npm run type-check
# Run tests to ensure nothing is broken
echo "๐งช Running tests..."
npm test
echo "โ All quality checks passed!"