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-code-quality.ps1•260 B
# Helper script for Gradle code quality checks
if (Test-Path gradlew.bat) {
.\gradlew.bat codeQualityVerify --no-daemon
} else {
# Use mise exec to run gradle (mise exec sets up the environment)
mise exec -- gradle codeQualityVerify --no-daemon
}