We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/docdyhr/mcp-wordpress'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
echo "π Running pre-push checks..."
# Run build first to ensure everything compiles
echo "ποΈ Building project..."
npm run build || {
echo "β Build failed. Please fix compilation errors before pushing."
exit 1
}
# Run memory-safe tests to prevent V8 crashes
echo "π§ͺ Running memory-safe test suite..."
npm run test:safe || {
echo "β Tests failed. Please fix failing tests before pushing."
exit 1
}
# Run security tests with memory constraints
echo "π Running security validation..."
NODE_OPTIONS="--max-old-space-size=4096" npm run test:security || {
echo "β Security tests failed. Please address security issues before pushing."
exit 1
}
# Run dependency audit (lightweight check)
echo "π Running security audit..."
npm audit --audit-level moderate || {
echo "β οΈ Security audit found issues. Consider running 'npm audit fix' if needed."
echo "Proceeding with push as audit issues may be acceptable..."
}
echo "β
All pre-push checks passed! Ready to push."