We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/detailobsessed/unblu-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
check_lfs_files.sh•432 B
#!/bin/bash
# Check that LFS files are actual content, not pointers
# This prevents accidentally committing/pushing LFS pointer files
set -e
for f in $(git lfs ls-files -n 2>/dev/null); do
if head -1 "$f" 2>/dev/null | grep -q "^version https://git-lfs"; then
echo "ERROR: $f is an LFS pointer, not actual content."
echo "Run: git lfs pull"
exit 1
fi
done
echo "All LFS files are actual content."