Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
Verify-ChangeLogs.ps11.17 kB
# Wrapper Script for ChangeLog Verification in a PR [CmdletBinding()] param ( [String]$PackagePropertiesFolder ) Set-StrictMode -Version 3 . (Join-Path $PSScriptRoot common.ps1) function ShouldVerifyChangeLog ($PkgArtifactDetails) { if ($PkgArtifactDetails) { if ($PkgArtifactDetails.PSObject.Properties["skipVerifyChangeLog"] -eq $true) { return $false } return $true } return $false } # find which packages we need to confirm the changelog for $packageProperties = Get-ChildItem -Recurse "$PackagePropertiesFolder" *.json # grab the json file, then confirm the changelog entry for it $allPassing = $true foreach($propertiesFile in $packageProperties) { $PackageProp = Get-Content -Path $propertiesFile | ConvertFrom-Json if (-not (ShouldVerifyChangeLog $PackageProp.ArtifactDetails)) { Write-Host "Skipping changelog verification for $($PackageProp.Name)" continue } $validChangeLog = Confirm-ChangeLogEntry -ChangeLogLocation $PackageProp.ChangeLogPath -VersionString $PackageProp.Version -ForRelease $false if (-not $validChangeLog) { $allPassing = $false } } if (!$allPassing) { exit 1 } exit 0

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Azure/azure-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server