Prerequisites:
Steps:
dotnet restore
dotnet build
func start --port 7071
curl http://localhost:7071/api/health
az group create --name cmemory-rg --location eastus
az storage account create --name <storageName> --resource-group cmemory-rg --location eastus --sku Standard_LRS
az functionapp create --name <funcAppName> --resource-group cmemory-rg --storage-account <storageName> --runtime dotnet-isolated --functions-version 4 --consumption-plan-location eastus
Publish:
dotnet publish CentralMemoryMcp.Functions/CentralMemoryMcp.Functions.csproj -c Release -o publish
func azure functionapp publish <funcAppName> --dotnet-isolated --source-path publish
Use for probes and monitoring.
Only four MCP tools implemented: read_graph, upsert_entity, upsert_relation, get_entity_relations. Adjust monitoring expectations accordingly (no search/stats endpoints yet).
Add workflow to restore, build, publish artifact, deploy with publish profile or Azure login.