Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
BicepSchemaSetup.cs1.18 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using AzureMcp.BicepSchema.Commands; using AzureMcp.BicepSchema.Services; using AzureMcp.Core.Areas; using AzureMcp.Core.Commands; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace AzureMcp.BicepSchema; public class BicepSchemaSetup : IAreaSetup { public string Name => "bicepschema"; public void ConfigureServices(IServiceCollection services) { services.AddSingleton<IBicepSchemaService, BicepSchemaService>(); } public void RegisterCommands(CommandGroup rootGroup, ILoggerFactory loggerFactory) { var bicepschema = new CommandGroup(Name, "Bicep schema operations - Commands for working with Azure Bicep Infrastructure as Code (IaC) generation and schema management. Includes operations for retrieving Bicep schemas, templates, and resource definitions to support infrastructure deployment automation."); rootGroup.AddSubGroup(bicepschema); // Register Bicep Schema command bicepschema.AddCommand("get", new BicepSchemaGetCommand(loggerFactory.CreateLogger<BicepSchemaGetCommand>())); } }

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