Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
CloudArchitectSetup.cs1.01 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using AzureMcp.CloudArchitect.Commands.Design; using AzureMcp.Core.Areas; using AzureMcp.Core.Commands; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace AzureMcp.CloudArchitect; public class CloudArchitectSetup : IAreaSetup { public string Name => "cloudarchitect"; public void ConfigureServices(IServiceCollection services) { } public void RegisterCommands(CommandGroup rootGroup, ILoggerFactory loggerFactory) { // Create CloudArchitect command group var cloudArchitect = new CommandGroup(Name, "Cloud Architecture operations - Commands for generating Azure architecture designs and recommendations based on requirements."); rootGroup.AddSubGroup(cloudArchitect); // Register CloudArchitect commands cloudArchitect.AddCommand("design", new DesignCommand( loggerFactory.CreateLogger<DesignCommand>())); } }

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