MeshFlow
  • Docs
  • Learn
  • Compare
  • Pricing
  • Cloud
  • Deploy
  • BlogEngineering deep dives
    CustomersCase studies with metrics
    CommunityCommunity & updates
    ChangelogReleases & roadmap
    Init CLIScaffold a project in 60s
GitHubSign inGet started →
  • Docs
  • Learn
  • Compare
  • Pricing
  • Cloud
  • Deploy
  • BlogEngineering deep dives
  • CustomersCase studies with metrics
  • CommunityCommunity & updates
  • ChangelogReleases & roadmap
  • Init CLIScaffold a project in 60s
GitHubSign inGet started →
MeshFlow

The production-safe standard for agentic AI.
Apache 2.0 — free forever.

Product
  • Pricing
  • Cloud
  • Compare
  • Init CLI
  • Changelog
Docs
  • Quickstart
  • Core concepts
  • Compliance guide
  • Token optimization
  • API reference
Resources
  • Blog
  • Customers
  • Community
  • PyPI
  • GitHub
Company
  • Discord
  • Twitter
  • Security
  • License
meshflow.dev © 2026 · Apache 2.0
All systems operational
Deploy anywhere

MeshFlow runs on
every cloud.

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.

meshflow deploy --target aws Terraform / Bicep / CloudFormation Helm chart included

AWS ECS Fargate

Serverless containers — pay per task, no servers to manage

Provider docs
terminal
# 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-...
Use Secrets Manager or Parameter Store for ANTHROPIC_API_KEY — never hardcode.
HIPAA: enable VPC, private subnets, and CloudTrail for §164.312 audit logging.
For long-running agents (>15 min): use ECS Fargate instead of Lambda.

Compliance & deployment compatibility

ProviderScales to 0HIPAA eligibleEU data residencyEstimated 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.

Generate IaC without deploying

Print the CloudFormation, Bicep, Terraform, fly.toml, or Kubernetes manifest for any target without touching your cloud account:

terminal
# 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