Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
AzureIsvSetup.cs1.4 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using AzureMcp.AzureIsv.Commands.Datadog; using AzureMcp.AzureIsv.Services; using AzureMcp.AzureIsv.Services.Datadog; using AzureMcp.Core.Areas; using AzureMcp.Core.Commands; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace AzureMcp.AzureIsv; public class AzureIsvSetup : IAreaSetup { public string Name => "datadog"; public void ConfigureServices(IServiceCollection services) { services.AddSingleton<IDatadogService, DatadogService>(); } public void RegisterCommands(CommandGroup rootGroup, ILoggerFactory loggerFactory) { var datadog = new CommandGroup(Name, "Datadog operations - Commands for managing and monitoring Azure resources through Datadog integration. Includes operations for listing Datadog monitors and retrieving information about monitored Azure resources and their health status."); rootGroup.AddSubGroup(datadog); var monitoredResources = new CommandGroup("monitoredresources", "Datadog monitored resources operations - Commands for listing monitored resources in a specific Datadog monitor."); datadog.AddSubGroup(monitoredResources); monitoredResources.AddCommand("list", new MonitoredResourcesListCommand(loggerFactory.CreateLogger<MonitoredResourcesListCommand>())); } }

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