Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
ci-build.ps1890 B
param( [string]$os, $PackageArguments ) # Define OS targets and corresponding RIDs $osMap = @{ "windows_x64" = "win-x64" "windows_arm64" = "win-arm64" "linux_x64" = "linux-x64" "linux_arm64" = "linux-arm64" "macOS_x64" = "osx-x64" "macOS_arm64" = "osx-arm64" } if ($os) { if (-not $osMap.ContainsKey($os)) { Write-Error "Unknown OS: $os. Valid options: $($osMap.Keys -join ', ')" exit 1 } # Define project and destination base paths $projectPath = Resolve-Path "../../src" $dstBase = Join-Path $PSScriptRoot "server" if (!(Test-Path $dstBase)) { New-Item -ItemType Directory -Path $dstBase | Out-Null } dotnet publish $projectPath -c Release -r $($osMap[$os]) --self-contained true -o $dstBase } # Run the npm packaging step Invoke-Expression "npm run ci-package -- $PackageArguments"

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