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
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
using AzureMcp.Core.Options;
using AzureMcp.Marketplace.Models;
namespace AzureMcp.Marketplace.Services;
public interface IMarketplaceService
{
Task<ProductDetails> GetProduct(
string productId,
string subscription,
bool? includeStopSoldPlans = null,
string? language = null,
string? market = null,
bool? lookupOfferInTenantLevel = null,
string? planId = null,
string? skuId = null,
bool? includeServiceInstructionTemplates = null,
string? pricingAudience = null,
string? tenant = null,
RetryPolicyOptions? retryPolicy = null);
}