We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/remotebrowser/mcp-getgather'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env sh
echo "๐ Running pre-push checks (matching CI static analysis)..."
# Run all static analysis checks that match the CI workflow
echo "๐ Running comprehensive static analysis..."
npm run check:all
check_exit_code=$?
# Check if any issues were found
if [ $check_exit_code -ne 0 ]; then
echo ""
echo "โ Static analysis checks failed! Please fix issues before pushing."
echo ""
echo "To fix issues, run:"
echo " npm run frontend:format # Fix frontend formatting"
echo " npm run backend:format # Fix backend formatting"
echo " npm run backend:check:type-safety # Check backend types"
echo " npm run yaml:check:format # Check YAML formatting"
echo ""
exit 1
fi
echo "โ
All static analysis checks passed!"