Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
Remove-GitHooks.ps1737 B
#!/usr/bin/env pwsh <# .SYNOPSIS Disable git hooks from in .git/hooks by renaming them #> [CmdletBinding()] param() $repoRoot = Resolve-Path (Join-Path $PSScriptRoot "../..") $gitHooksTargetDir = Join-Path $repoRoot ".git/hooks" if (-not (Test-Path $gitHooksTargetDir)) { Write-Host "Git hooks directory not found. Skipping hook removal." exit 0 } # Copy hook files Write-Host "Disabling git hooks in $gitHooksTargetDir..." $hookFiles = Get-ChildItem -Path $gitHooksTargetDir -File | Where-Object { $_.Extension -eq '' } foreach ($file in $hookFiles) { Write-Host " Renaming $($file.Name) to $($file.Name).old" # Create a backup of the existing file Move-Item -Path $file -Destination "$file.old" -Force }

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