Skip to main content
Glama

GenAIScript

Official
by microsoft
MIT License
43
2,820
  • Linux
  • Apple
main.bicep1.03 kB
@description('Base name of the resource such as web app name and app service plan ') @minLength(2) param webAppName string = 'AzureLinuxApp' @description('The SKU of App Service Plan ') param sku string = 'S1' @description('The Runtime stack of current web app') param linuxFxVersion string = 'php|7.4' @description('Location for all resources.') param location string = resourceGroup().location var webAppPortalName = '${webAppName}-webapp' var appServicePlanName = 'AppServicePlan-${webAppName}' resource appServicePlan 'Microsoft.Web/serverfarms@2022-03-01' = { name: appServicePlanName location: location sku: { name: sku } kind: 'linux' properties: { reserved: true } } resource webAppPortal 'Microsoft.Web/sites@2022-03-01' = { name: webAppPortalName location: location kind: 'app' properties: { serverFarmId: appServicePlan.id siteConfig: { linuxFxVersion: linuxFxVersion ftpsState: 'FtpsOnly' } httpsOnly: true } identity: { type: 'SystemAssigned' } }

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/microsoft/genaiscript'

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