The same governed agents — HIPAA/SOX/GDPR profiles, SHA-256 audit chain, hard cost caps — running on AWS, Azure, GCP, Railway, Fly.io, or any Kubernetes cluster. One CLI command. IaC templates included.
Serverless containers — pay per task, no servers to manage
# Prerequisites: aws CLI + Docker + ECR repo
# 1. Push image to ECR
aws ecr get-login-password --region us-east-1 | \
docker login --username AWS --password-stdin \
123456789.dkr.ecr.us-east-1.amazonaws.com
docker tag meshflow-mcp:1.13.0 \
123456789.dkr.ecr.us-east-1.amazonaws.com/meshflow-mcp:1.13.0
docker push 123456789.dkr.ecr.us-east-1.amazonaws.com/meshflow-mcp:1.13.0
# 2. Deploy via meshflow CLI
meshflow deploy \
--target aws \
--tag 123456789.dkr.ecr.us-east-1.amazonaws.com/meshflow-mcp:1.13.0 \
--name meshflow-prod \
--region us-east-1 \
--env ANTHROPIC_API_KEY=sk-ant-...| Provider | Scales to 0 | HIPAA eligible | EU data residency | Estimated cost |
|---|---|---|---|---|
| AWS ECS Fargate | — | ✅ | ✅ | ~$11/mo (0.25 vCPU / 0.5 GB) |
| Azure Container Apps | ✅ | ✅ | ✅ | ~$0 at rest, $0.000024/vCPU-s active |
| GCP Cloud Run | ✅ | ✅ | ✅ | Free tier: 2M req/mo. Then $0.000024/vCPU-s |
| Railway | — | ⚠ not eligible | — | $5/mo Hobby · $20/mo Pro (8 GB RAM, 8 vCPU) |
| Fly.io | ✅ | ⚠ not eligible | ✅ | ~$1.94/mo (shared-cpu-1x, 256 MB) — pauses when idle |
| Kubernetes | — | ✅ | ✅ | Depends on node pool — e.g. ~$0.048/hr for e2-medium (GKE) |
HIPAA eligibility requires a Business Associate Agreement (BAA) with the provider. AWS, Azure, and GCP all offer BAAs. Railway and Fly.io do not.
Print the CloudFormation, Bicep, Terraform, fly.toml, or Kubernetes manifest for any target without touching your cloud account:
# Print Terraform for GCP Cloud Run
meshflow deploy --target gcp --iac \
--tag us-central1-docker.pkg.dev/my-project/meshflow-mcp:1.13.0 \
--name meshflow-prod --region us-central1
# Print Bicep for Azure Container Apps
meshflow deploy --target azure --iac \
--tag meshflowregistry.azurecr.io/meshflow-mcp:1.13.0
# Print Kubernetes manifest
meshflow deploy --target k8s --iac \
--tag ghcr.io/anteneh-t-tessema/meshflow-mcp:1.13.0