We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RihardsJ/gmail-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
pre-push•459 B
#!/bin/sh
# Pre-push hook to run tests before pushing to remote
echo "Running pre-push tests..."
echo ""
# Run tests
uv run pytest --tb=short -q
# Capture exit code
TEST_EXIT_CODE=$?
if [ $TEST_EXIT_CODE -ne 0 ]; then
echo ""
echo "❌ Tests failed! Push aborted."
echo "Fix the failing tests before pushing, or use 'git push --no-verify' to skip this check."
exit 1
fi
echo ""
echo "✅ All tests passed! Proceeding with push..."
exit 0