Skip to main content
Glama
Azure-Samples

Secure Remote MCP Server

api.bicep1.62 kB
param name string param location string = resourceGroup().location param tags object = {} param applicationInsightsName string = '' param appServicePlanId string param appSettings object = {} param runtimeName string param runtimeVersion string param serviceName string = 'api' param storageAccountName string param deploymentStorageContainerName string param virtualNetworkSubnetId string = '' param instanceMemoryMB int = 2048 param maximumInstanceCount int = 100 param identityId string = '' param identityClientId string = '' var applicationInsightsIdentity = 'ClientId=${identityClientId};Authorization=AAD' module api '../core/host/functions-flexconsumption.bicep' = { name: '${serviceName}-functions-module' params: { name: name location: location tags: union(tags, { 'azd-service-name': serviceName }) identityType: 'UserAssigned' identityId: identityId appSettings: union(appSettings, { AzureWebJobsStorage__clientId : identityClientId APPLICATIONINSIGHTS_AUTHENTICATION_STRING: applicationInsightsIdentity }) applicationInsightsName: applicationInsightsName appServicePlanId: appServicePlanId runtimeName: runtimeName runtimeVersion: runtimeVersion storageAccountName: storageAccountName deploymentStorageContainerName: deploymentStorageContainerName virtualNetworkSubnetId: virtualNetworkSubnetId instanceMemoryMB: instanceMemoryMB maximumInstanceCount: maximumInstanceCount } } output SERVICE_API_NAME string = api.outputs.name output SERVICE_API_IDENTITY_PRINCIPAL_ID string = api.outputs.identityPrincipalId

Latest Blog Posts

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-Samples/remote-mcp-apim-functions-python'

If you have feedback or need assistance with the MCP directory API, please join our Discord server