Skip to main content
Glama
main.bicep1.25 kB
@description('Name of the container registry') param containerRegistryName string @description('Name of the container instance') param containerInstanceName string @description('Location for all resources') param location string = resourceGroup().location resource acr 'Microsoft.ContainerRegistry/registries@2023-07-01' = { name: containerRegistryName location: location sku: { name: 'Basic' } properties: { adminUserEnabled: true } } resource containerGroup 'Microsoft.ContainerInstance/containerGroups@2023-05-01' = { name: containerInstanceName location: location properties: { containers: [ { name: 'mcp-server-demo' properties: { image: '${acr.properties.loginServer}/mcp-server-demo:latest' ports: [ { port: 80 } ] resources: { requests: { cpu: 1 memoryInGB: 1.5 } } } } ] osType: 'Linux' restartPolicy: 'Always' imageRegistryCredentials: [ { server: acr.properties.loginServer username: acr.listCredentials().username password: acr.listCredentials().passwords[0].value } ] } }

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/pablomartinferrari/mcp-demo'

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