Skip to main content
Glama

Azure MCP Server

Official
MIT License
1,161
  • Linux
  • Apple
GrafanaSetup.cs1.09 kB
// Copyright (c) Microsoft Corporation. // Licensed under the MIT License. using AzureMcp.Core.Areas; using AzureMcp.Core.Commands; using AzureMcp.Grafana.Commands.Workspace; using AzureMcp.Grafana.Services; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; namespace AzureMcp.Grafana; public class GrafanaSetup : IAreaSetup { public string Name => "grafana"; public void ConfigureServices(IServiceCollection services) { services.AddSingleton<IGrafanaService, GrafanaService>(); } public void RegisterCommands(CommandGroup rootGroup, ILoggerFactory loggerFactory) { var grafana = new CommandGroup(Name, "Grafana workspace operations - Commands for managing and accessing Azure Managed Grafana resources and monitoring dashboards. Includes operations for listing Grafana workspaces and managing data visualization and monitoring capabilities."); rootGroup.AddSubGroup(grafana); grafana.AddCommand("list", new WorkspaceListCommand(loggerFactory.CreateLogger<WorkspaceListCommand>())); } }

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