Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
AzureTerraformBestPracticesSetup.cs1.27 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using AzureMcp.AzureTerraformBestPractices.Commands; using AzureMcp.Core.Areas; using AzureMcp.Core.Commands; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace AzureMcp.AzureTerraformBestPractices; public class AzureTerraformBestPracticesSetup : IAreaSetup { public string Name => "azureterraformbestpractices"; public void ConfigureServices(IServiceCollection services) { } public void RegisterCommands(CommandGroup rootGroup, ILoggerFactory loggerFactory) { // Register Azure Terraform Best Practices command at the root level var azureTerraformBestPractices = new CommandGroup( Name, @"Returns Terraform best practices for Azure. Call this before generating Terraform code for Azure Providers. If this tool needs to be categorized, it belongs to the Azure Best Practices category." ); rootGroup.AddSubGroup(azureTerraformBestPractices); azureTerraformBestPractices.AddCommand( "get", new AzureTerraformBestPracticesGetCommand(loggerFactory.CreateLogger<AzureTerraformBestPracticesGetCommand>()) ); } }

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