Strata
Strata helps model cloud infrastructure across AWS, Google Cloud, and Azure as a visual typed graph. It can import infrastructure-as-code, validate architecture, estimate cost, and export infrastructure scaffolds, including Terraform-oriented output.
Public beta / open source Multicloud infrastructure builder
Highlights
APP
- Drag cloud services onto a canvas and connect them with typed relationships
APP
- Import CloudFormation, Terraform show JSON, and Azure ARM into graph form
APP
- Export graph-based infrastructure scaffolds for handoff and iteration
APP
- MCP server lets agents list services, validate architecture, suggest rules, import IaC, export IaC, and estimate cost
Technical Notes
- Public repository: makedirectory/strata
- Live app: strata.mk-dir.com
- MCP wraps the same registry, validation, IaC import/export, and cost engines as the UI
MCP agent request
GRAPH typed infra map
RULES validate architecture
IAC Terraform scaffold
resource "aws_vpc" "app" {
cidr_block = "10.0.0.0/16"
}
resource "aws_subnet" "public" {
vpc_id = aws_vpc.app.id
cidr_block = "10.0.1.0/24"
}