# 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

01. Public repository: makedirectory/strata  
02. Live app: strata.mk-dir.com  
03. 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**

```hcl
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"
}
```

## Privacy and Policy

#### Relevant policies and public references for Strata.

- [Strata privacy policy](/content/strata-privacy-policy/index.html)  
- [Make Directory privacy policy](/content/privacy-policy/index.html)
