We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/adrianmikula/JakartaMigration'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
gradle-build.ps1•393 B
# Helper script for Gradle build
param([switch]$WithTests)
if (Test-Path gradlew.bat) {
if ($WithTests) {
.\gradlew.bat build
} else {
.\gradlew.bat build -x test
}
} else {
# Use mise exec to run gradle (mise exec sets up the environment)
if ($WithTests) {
mise exec -- gradle build
} else {
mise exec -- gradle build -x test
}
}