Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
AcrSetup.cs1.55 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using AzureMcp.Acr.Commands.Registry; using AzureMcp.Acr.Services; using AzureMcp.Core.Areas; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace AzureMcp.Acr; public class AcrSetup : IAreaSetup { public string Name => "acr"; public void ConfigureServices(IServiceCollection services) { services.AddSingleton<IAcrService, AcrService>(); } public void RegisterCommands(CommandGroup rootGroup, ILoggerFactory loggerFactory) { var acr = new CommandGroup(Name, "Azure Container Registry operations - Commands for managing Azure Container Registry resources. Includes operations for listing container registries and managing registry configurations."); rootGroup.AddSubGroup(acr); var registry = new CommandGroup("registry", "Container Registry resource operations - Commands for listing and managing Container Registry resources in your Azure subscription."); acr.AddSubGroup(registry); registry.AddCommand("list", new RegistryListCommand(loggerFactory.CreateLogger<RegistryListCommand>())); var repository = new CommandGroup("repository", "Container Registry repository operations - Commands for listing and managing repositories within a Container Registry."); registry.AddSubGroup(repository); repository.AddCommand("list", new RegistryRepositoryListCommand(loggerFactory.CreateLogger<RegistryRepositoryListCommand>())); } }

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