Skip to main content
Glama
deploy.sh768 B
#!/bin/bash # Variables RESOURCE_GROUP="mcp-server-rg" LOCATION="eastus" # Change this to your preferred location ACR_NAME="mcpserverregistry" # Must be globally unique CONTAINER_NAME="mcp-server-container" # Create resource group az group create --name $RESOURCE_GROUP --location $LOCATION # Create Azure Container Registry az acr create --resource-group $RESOURCE_GROUP --name $ACR_NAME --sku Basic --admin-enabled true # Build and push the container az acr build --registry $ACR_NAME --image mcp-server:latest . # Deploy using the ARM template az deployment group create \ --resource-group $RESOURCE_GROUP \ --template-file azuredeploy.json \ --parameters \ containerRegistryName=$ACR_NAME \ containerInstanceName=$CONTAINER_NAME

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